rtw88: fix uninitialized 'tim_offset' warning
This avoids below warning and makes compiler happy. error: uninitialized symbol 'tim_offset' Signed-off-by: Po-Hao Huang <phhuang@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://lore.kernel.org/r/20220420093058.31646-1-pkshih@realtek.com
This commit is contained in:
parent
c94e369084
commit
9cbdadf009
1 changed files with 1 additions and 1 deletions
|
@ -1047,7 +1047,7 @@ static struct sk_buff *rtw_get_rsvd_page_skb(struct ieee80211_hw *hw,
|
||||||
struct rtw_vif *rtwvif;
|
struct rtw_vif *rtwvif;
|
||||||
struct sk_buff *skb_new;
|
struct sk_buff *skb_new;
|
||||||
struct cfg80211_ssid *ssid;
|
struct cfg80211_ssid *ssid;
|
||||||
u16 tim_offset;
|
u16 tim_offset = 0;
|
||||||
|
|
||||||
if (rsvd_pkt->type == RSVD_DUMMY) {
|
if (rsvd_pkt->type == RSVD_DUMMY) {
|
||||||
skb_new = alloc_skb(1, GFP_KERNEL);
|
skb_new = alloc_skb(1, GFP_KERNEL);
|
||||||
|
|
Loading…
Add table
Reference in a new issue