Commit 17155544 authored by Gulsah Kose's avatar Gulsah Kose Committed by Greg Kroah-Hartman

staging: lustre: lnet: klnds: o2iblnd: Removed useless return keywords.

Removed return keyword from void functions. Removed following checkpatch.pl warnings:
WARNING: void function return statements are not generally useful
Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b2ff3868
...@@ -1103,7 +1103,6 @@ kiblnd_query(lnet_ni_t *ni, lnet_nid_t nid, unsigned long *when) ...@@ -1103,7 +1103,6 @@ kiblnd_query(lnet_ni_t *ni, lnet_nid_t nid, unsigned long *when)
CDEBUG(D_NET, "Peer %s %p, alive %ld secs ago\n", CDEBUG(D_NET, "Peer %s %p, alive %ld secs ago\n",
libcfs_nid2str(nid), peer, libcfs_nid2str(nid), peer,
last_alive ? cfs_duration_sec(now - last_alive) : -1); last_alive ? cfs_duration_sec(now - last_alive) : -1);
return;
} }
void void
...@@ -2862,7 +2861,6 @@ kiblnd_shutdown(lnet_ni_t *ni) ...@@ -2862,7 +2861,6 @@ kiblnd_shutdown(lnet_ni_t *ni)
out: out:
if (list_empty(&kiblnd_data.kib_devs)) if (list_empty(&kiblnd_data.kib_devs))
kiblnd_base_shutdown(); kiblnd_base_shutdown();
return;
} }
static int static int
......
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