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

index 5394a848655876c2d0435ed6f8934363a060c303..350c6297fe5dff8570b241b1a49de9673af53a38 100644 (file)
@@ -697,7 +697,6 @@ err_dbg:
        debugfs_remove(priv->dbg_root);
        return err;
 }
-EXPORT_SYMBOL(mlx5_dev_init);
 
 static void mlx5_dev_cleanup(struct mlx5_core_dev *dev)
 {