]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit76a91590e0812a4ab433dc43fb891dd5606d6740
tree667166df5e4110d4a549942ae45f8003e99c7405
parentdbff2859e284b07f63c46c2d1b0c93b7059c06a8
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