net/mlx5_core: don't export static symbol
authorJulia Lawall <Julia.Lawall@lip6.fr>
Wed, 11 Mar 2015 16:56:25 +0000 (17:56 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 12 Mar 2015 04:03:34 +0000 (00:03 -0400)
commit6b9f53bc102d4e61b73c13f661de4a1c358768c1
tree667166df5e4110d4a549942ae45f8003e99c7405
parent84ed82b74dcb23d96cee2987612a677ffd2b5470
net/mlx5_core: don't export static symbol

The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r@
type T;
identifier f;
@@

static T f (...) { ... }

@@
identifier r.f;
declarer name EXPORT_SYMBOL;
@@

-EXPORT_SYMBOL(f);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx5/core/main.c