Commit 735c2e26 authored by Rashika Kheria's avatar Rashika Kheria Committed by Greg Kroah-Hartman

Staging: lustre: Fix EXPORT_SYMBOL should immediately follow its function/variable

This patch fixes the following checkpatch.pl issues in lnet/lnet/acceptor.c:
WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable
Signed-off-by: default avatarRashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: default avatarLisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f93c0616
...@@ -53,6 +53,7 @@ lnet_acceptor_port(void) ...@@ -53,6 +53,7 @@ lnet_acceptor_port(void)
{ {
return accept_port; return accept_port;
} }
EXPORT_SYMBOL(lnet_acceptor_port);
static inline int static inline int
lnet_accept_magic(__u32 magic, __u32 constant) lnet_accept_magic(__u32 magic, __u32 constant)
...@@ -61,9 +62,6 @@ lnet_accept_magic(__u32 magic, __u32 constant) ...@@ -61,9 +62,6 @@ lnet_accept_magic(__u32 magic, __u32 constant)
magic == __swab32(constant)); magic == __swab32(constant));
} }
EXPORT_SYMBOL(lnet_acceptor_port);
static char *accept = "secure"; static char *accept = "secure";
CFS_MODULE_PARM(accept, "s", charp, 0444, CFS_MODULE_PARM(accept, "s", charp, 0444,
......
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