summaryrefslogtreecommitdiff
path: root/net/ethernet
diff options
context:
space:
mode:
authorChihau Chau <chihau@gmail.com>2010-07-14 18:27:09 -0700
committerDavid S. Miller <davem@davemloft.net>2010-07-14 18:27:09 -0700
commit54874868585ffa5d73d7ab8a5a32ea7dcdec1441 (patch)
tree3247d9dc7247e2b17539ceb82a4c4a8eff7799e7 /net/ethernet
parent79236680bde29913dc6bfaf9165973b74223d5f7 (diff)
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>
Diffstat (limited to 'net/ethernet')
-rw-r--r--net/ethernet/pe2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ethernet/pe2.c b/net/ethernet/pe2.c
index eb00796758c..85d574addbc 100644
--- a/net/ethernet/pe2.c
+++ b/net/ethernet/pe2.c
@@ -28,11 +28,10 @@ struct datalink_proto *make_EII_client(void)
return proto;
}
+EXPORT_SYMBOL(make_EII_client);
void destroy_EII_client(struct datalink_proto *dl)
{
kfree(dl);
}
-
EXPORT_SYMBOL(destroy_EII_client);
-EXPORT_SYMBOL(make_EII_client);