Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d762c9b4 authored by Shivani Bhardwaj's avatar Shivani Bhardwaj Committed by Greg Kroah-Hartman
Browse files

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: default avatarShivani Bhardwaj <shivanib134@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 96c35228
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;