rtw88: 8821c: make symbol 'rtw8821c_rtw_pwr_track_tbl' static
authorWei Yongjun <weiyongjun1@huawei.com>
Tue, 21 Jul 2020 13:49:01 +0000 (21:49 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Sun, 2 Aug 2020 15:06:11 +0000 (18:06 +0300)
The sparse tool complains as follows:

drivers/net/wireless/realtek/rtw88/rtw8821c.c:1374:32: warning:
 symbol 'rtw8821c_rtw_pwr_track_tbl' was not declared. Should it be static?

This variable is not used outside of rtw8821c.c, so this commit
marks it static.

Fixes: 3a4312828ce1 ("rtw88: 8821c: add power tracking")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200721134901.33968-1-weiyongjun1@huawei.com
drivers/net/wireless/realtek/rtw88/rtw8821c.c

index c41c61ee2fb6e87b525472141bbe38183306b002..5fef19f19ac1ab60272aabcc72099d37b442771d 100644 (file)
@@ -1371,7 +1371,7 @@ static const u8 rtw8821c_pwrtrk_2g_cck_a_p[] = {
        5, 6, 6, 7, 7, 7, 8, 8, 9, 9, 9, 9, 9, 9
 };
 
-const struct rtw_pwr_track_tbl rtw8821c_rtw_pwr_track_tbl = {
+static const struct rtw_pwr_track_tbl rtw8821c_rtw_pwr_track_tbl = {
        .pwrtrk_5gb_n[0] = rtw8821c_pwrtrk_5gb_n[0],
        .pwrtrk_5gb_n[1] = rtw8821c_pwrtrk_5gb_n[1],
        .pwrtrk_5gb_n[2] = rtw8821c_pwrtrk_5gb_n[2],