Re: [PATCH] gve: Remove the exporting of gve_probe

2019-07-14 Thread David Miller
From: Denis Efremov Date: Sun, 14 Jul 2019 15:02:25 +0300 > The function gve_probe is declared static and marked EXPORT_SYMBOL, which > is at best an odd combination. Because the function is not used outside of > the drivers/net/ethernet/google/gve/gve_main.c file it is defined in, this > commit

[PATCH] gve: Remove the exporting of gve_probe

2019-07-14 Thread Denis Efremov
The function gve_probe is declared static and marked EXPORT_SYMBOL, which is at best an odd combination. Because the function is not used outside of the drivers/net/ethernet/google/gve/gve_main.c file it is defined in, this commit removes the EXPORT_SYMBOL() marking. Signed-off-by: Denis Efremov