Prev: [PATCH RFC tip/core/rcu 19/30] vhost: add __rcu annotations
Next: Removing dead CHELSIO_T1_COUGAR
From: Chihau Chau on 14 Jul 2010 16:30 From: Chihau Chau <chihau(a)gmail.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(a)gmail.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(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: [PATCH RFC tip/core/rcu 19/30] vhost: add __rcu annotations Next: Removing dead CHELSIO_T1_COUGAR |