From: Arik Nemtsov Date: Tue, 15 May 2012 14:08:51 +0000 (+0300) Subject: wlcore: fix sparse warnings related to static functions X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=d35dc739f6a0b3680a591bd4e831fd3afa912632;p=~shefty%2Frdma-dev.git wlcore: fix sparse warnings related to static functions The "static" modifier was mistakenly forgotten for some functions. Signed-off-by: Arik Nemtsov Signed-off-by: Luciano Coelho --- diff --git a/drivers/net/wireless/ti/wl18xx/main.c b/drivers/net/wireless/ti/wl18xx/main.c index 2e9b3cb6e07..31cd4cc3c1b 100644 --- a/drivers/net/wireless/ti/wl18xx/main.c +++ b/drivers/net/wireless/ti/wl18xx/main.c @@ -1098,7 +1098,7 @@ static struct ieee80211_sta_ht_cap wl18xx_mimo_ht_cap = { }, }; -int __devinit wl18xx_probe(struct platform_device *pdev) +static int __devinit wl18xx_probe(struct platform_device *pdev) { struct wl1271 *wl; struct ieee80211_hw *hw;