Commit 416c2f9cf5524cb53392cbcf99fef7aa687192ce
Committed by
David S. Miller
1 parent
f78f09f765
Exists in
master
and in
39 other branches
genetlink: cleanup code according to CodingStyle
If the function is exported, the EXPORT* macro for it should follow immediately after the closing function brace line. Signed-off-by: Changli Gao <xiaosuo@gmail.com> ---- net/netlink/genetlink.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 4 additions and 5 deletions Side-by-side Diff
net/netlink/genetlink.c
... | ... | @@ -303,6 +303,7 @@ |
303 | 303 | errout: |
304 | 304 | return err; |
305 | 305 | } |
306 | +EXPORT_SYMBOL(genl_register_ops); | |
306 | 307 | |
307 | 308 | /** |
308 | 309 | * genl_unregister_ops - unregister generic netlink operations |
... | ... | @@ -337,6 +338,7 @@ |
337 | 338 | |
338 | 339 | return -ENOENT; |
339 | 340 | } |
341 | +EXPORT_SYMBOL(genl_unregister_ops); | |
340 | 342 | |
341 | 343 | /** |
342 | 344 | * genl_register_family - register a generic netlink family |
... | ... | @@ -405,6 +407,7 @@ |
405 | 407 | errout: |
406 | 408 | return err; |
407 | 409 | } |
410 | +EXPORT_SYMBOL(genl_register_family); | |
408 | 411 | |
409 | 412 | /** |
410 | 413 | * genl_register_family_with_ops - register a generic netlink family |
... | ... | @@ -485,6 +488,7 @@ |
485 | 488 | |
486 | 489 | return -ENOENT; |
487 | 490 | } |
491 | +EXPORT_SYMBOL(genl_unregister_family); | |
488 | 492 | |
489 | 493 | static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) |
490 | 494 | { |
... | ... | @@ -898,11 +902,6 @@ |
898 | 902 | } |
899 | 903 | |
900 | 904 | subsys_initcall(genl_init); |
901 | - | |
902 | -EXPORT_SYMBOL(genl_register_ops); | |
903 | -EXPORT_SYMBOL(genl_unregister_ops); | |
904 | -EXPORT_SYMBOL(genl_register_family); | |
905 | -EXPORT_SYMBOL(genl_unregister_family); | |
906 | 905 | |
907 | 906 | static int genlmsg_mcast(struct sk_buff *skb, u32 pid, unsigned long group, |
908 | 907 | gfp_t flags) |