forked from Minki/linux
Staging: rtl8188eu: rtw_ieee80211: Remove unnecessary cast
Explicit type conversion is not required and should be removed. Semantic patch used: @@ type T; T e; identifier x; @@ * T x = (T)e; Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
96c3522855
commit
d762c9b4b4
@ -1103,7 +1103,7 @@ void rtw_macaddr_cfg(u8 *mac_addr)
|
||||
|
||||
void dump_ies(u8 *buf, u32 buf_len)
|
||||
{
|
||||
u8 *pos = (u8 *)buf;
|
||||
u8 *pos = buf;
|
||||
u8 id, len;
|
||||
|
||||
while (pos-buf <= buf_len) {
|
||||
@ -1119,7 +1119,7 @@ void dump_ies(u8 *buf, u32 buf_len)
|
||||
|
||||
void dump_wps_ie(u8 *ie, u32 ie_len)
|
||||
{
|
||||
u8 *pos = (u8 *)ie;
|
||||
u8 *pos = ie;
|
||||
u16 id;
|
||||
u16 len;
|
||||
u8 *wps_ie;
|
||||
|
Loading…
Reference in New Issue
Block a user