Skip to content

Commit

Permalink
Net: ethernet: pe2.c: fix EXPORT_SYMBOL macro code style issue
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chihau Chau authored and David S. Miller committed Jul 15, 2010
1 parent 7923668 commit 5487486
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions net/ethernet/pe2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit 5487486

Please sign in to comment.