From: Chihau Chau Date: Thu, 15 Jul 2010 01:27:09 +0000 (-0700) Subject: Net: ethernet: pe2.c: fix EXPORT_SYMBOL macro code style issue X-Git-Tag: v2.6.36-rc1~571^2~222 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54874868585ffa5d73d7ab8a5a32ea7dcdec1441;p=platform%2Fkernel%2Flinux-stable.git 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 Signed-off-by: David S. Miller --- diff --git a/net/ethernet/pe2.c b/net/ethernet/pe2.c index eb00796..85d574a 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);