mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
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: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
ca62b9c3f7
commit
c8d149f3db
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user