Commit 65fdf7d2 authored by Trond Myklebust's avatar Trond Myklebust

NLM: Fix a bogus 'return' in nlmclnt_rpc_release

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 883bb163
......@@ -244,7 +244,7 @@ void nlm_release_call(struct nlm_rqst *call)
static void nlmclnt_rpc_release(void *data)
{
return nlm_release_call(data);
nlm_release_call(data);
}
static int nlm_wait_on_grace(wait_queue_head_t *queue)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment