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>
This commit is contained in:
Chihau Chau 2010-07-14 18:27:09 -07:00 committed by David S. Miller
parent 79236680bd
commit 5487486858
1 changed files with 1 additions and 2 deletions

View 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);