mirror of
https://github.com/torvalds/linux.git
synced 2024-12-28 05:41:55 +00:00
staging: rtl8723bs: hal: fix error "do not initialise globals to 0"
this patch fixes below Errors reported by checkpatch ERROR: do not initialise globals to 0 +u8 g_fwdl_chksum_fail = 0; ERROR: do not initialise globals to 0 +u8 g_fwdl_wintint_rdy_fail = 0; Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c1c7830cc7
commit
dfa6cbbf3c
@ -217,7 +217,7 @@ void _8051Reset8723(struct adapter *padapter)
|
||||
DBG_8192C("%s: Finish\n", __func__);
|
||||
}
|
||||
|
||||
u8 g_fwdl_chksum_fail = 0;
|
||||
u8 g_fwdl_chksum_fail;
|
||||
|
||||
static s32 polling_fwdl_chksum(
|
||||
struct adapter *adapter, u32 min_cnt, u32 timeout_ms
|
||||
@ -262,7 +262,7 @@ exit:
|
||||
return ret;
|
||||
}
|
||||
|
||||
u8 g_fwdl_wintint_rdy_fail = 0;
|
||||
u8 g_fwdl_wintint_rdy_fail;
|
||||
|
||||
static s32 _FWFreeToGo(struct adapter *adapter, u32 min_cnt, u32 timeout_ms)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user