[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1279139074-13040-1-git-send-email-chihau@gmail.com>
Date: Wed, 14 Jul 2010 16:24:34 -0400
From: Chihau Chau <chihau@...il.com>
To: davem@...emloft.net
Cc: tj@...nel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org, Chihau Chau <chihau@...il.com>
Subject: [PATCH] Net: ethernet: pe2.c: fix EXPORT_SYMBOL macro code style issue
From: Chihau Chau <chihau@...il.com>
This patch fix a code style issuei, 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@...il.com>
---
net/ethernet/pe2.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
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);
--
1.5.6.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists