Skip to content

Commit

Permalink
NFS: "const static" vs "static const" in nfs4
Browse files Browse the repository at this point in the history
My previous "const static" vs "static const" cleanup missed a single case,
patch below takes care of it.

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Jesper Juhl authored and Trond Myklebust committed Mar 20, 2006
1 parent ca62b9c commit c8d149f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/nfs/nfs4proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2958,7 +2958,7 @@ static void nfs4_delegreturn_release(void *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_done = nfs4_delegreturn_done,
.rpc_release = nfs4_delegreturn_release,
Expand Down

0 comments on commit c8d149f

Please sign in to comment.