Commit 54874868585ffa5d73d7ab8a5a32ea7dcdec1441

Authored by Chihau Chau
Committed by David S. Miller
1 parent 79236680bd

Net: ethernet: pe2.c: fix EXPORT_SYMBOL macro code style issue

This patch fix a code style issue, if a function is exported, the
EXPORT_SYMBOL macro for it should follow immediately after the closing
function brace line.

Signed-off-by: Chihau Chau <chihau@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 1 additions and 2 deletions Side-by-side Diff

... ... @@ -28,12 +28,11 @@
28 28  
29 29 return proto;
30 30 }
  31 +EXPORT_SYMBOL(make_EII_client);
31 32  
32 33 void destroy_EII_client(struct datalink_proto *dl)
33 34 {
34 35 kfree(dl);
35 36 }
36   -
37 37 EXPORT_SYMBOL(destroy_EII_client);
38   -EXPORT_SYMBOL(make_EII_client);