From: John W. Linville Date: Wed, 15 Sep 2010 19:26:13 +0000 (-0400) Subject: ath9k: make ath_ant_div_conf_fast_divbias static X-Git-Tag: v2.6.37-rc1~147^2~265^2^2~99 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9bad82b8ae0e96483507e09463d8520bcfa78cc3;p=profile%2Fivi%2Fkernel-x86-ivi.git ath9k: make ath_ant_div_conf_fast_divbias static CHECK drivers/net/wireless/ath/ath9k/recv.c drivers/net/wireless/ath/ath9k/recv.c:1341:6: warning: symbol 'ath_ant_div_conf_fast_divbias' was not declared. Should it be static? Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c index 9eceeae..f921aa2 100644 --- a/drivers/net/wireless/ath/ath9k/recv.c +++ b/drivers/net/wireless/ath/ath9k/recv.c @@ -1338,7 +1338,7 @@ static void ath_select_ant_div_from_quick_scan(struct ath_ant_comb *antcomb, } } -void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf) +static void ath_ant_div_conf_fast_divbias(struct ath_hw_antcomb_conf *ant_conf) { /* Adjust the fast_div_bias based on main and alt lna conf */ switch ((ant_conf->main_lna_conf << 4) | ant_conf->alt_lna_conf) {