Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8d149f3 authored by Jesper Juhl's avatar Jesper Juhl Committed by Trond Myklebust
Browse files

NFS: "const static" vs "static const" in nfs4



My previous "const static" vs "static const" cleanup missed a single case,
patch below takes care of it.

Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent ca62b9c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2958,7 +2958,7 @@ static void nfs4_delegreturn_release(void *calldata)
	kfree(calldata);
	kfree(calldata);
}
}


const static struct rpc_call_ops nfs4_delegreturn_ops = {
static const struct rpc_call_ops nfs4_delegreturn_ops = {
	.rpc_call_prepare = nfs4_delegreturn_prepare,
	.rpc_call_prepare = nfs4_delegreturn_prepare,
	.rpc_call_done = nfs4_delegreturn_done,
	.rpc_call_done = nfs4_delegreturn_done,
	.rpc_release = nfs4_delegreturn_release,
	.rpc_release = nfs4_delegreturn_release,