]> Pileus Git - ~andy/linux/commitdiff
Net: ethernet: pe2.c: fix EXPORT_SYMBOL macro code style issue
authorChihau Chau <chihau@gmail.com>
Thu, 15 Jul 2010 01:27:09 +0000 (18:27 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 15 Jul 2010 01:27:09 +0000 (18:27 -0700)
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>
net/ethernet/pe2.c

index eb00796758c312a8eb6be570977c508e3dbb48ec..85d574addbc1757be0bd9fa5b4c3d7b99521d092 100644 (file)
@@ -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);