]> 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)
commita9d8fd43353122f76681a0eac3a3208a55672dd5
tree667166df5e4110d4a549942ae45f8003e99c7405
parent63c32bcf3d884b1ef2fd8adf4a1cddcefa444407
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