From: Michael Straube Date: Mon, 30 Aug 2021 12:15:08 +0000 (+0200) Subject: staging: r8188eu: remove unnecessary parentheses X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b53cf65e12433f54671d46421ac01efa1c25a755;p=linux.git staging: r8188eu: remove unnecessary parentheses Remove unnecessary parentheses around a variable to improve readability. Signed-off-by: Michael Straube Link: https://lore.kernel.org/r/20210830121508.6411-9-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/r8188eu/core/rtw_ieee80211.c b/drivers/staging/r8188eu/core/rtw_ieee80211.c index f76c762ccd4b8..952ad3eec5bcc 100644 --- a/drivers/staging/r8188eu/core/rtw_ieee80211.c +++ b/drivers/staging/r8188eu/core/rtw_ieee80211.c @@ -1038,7 +1038,7 @@ void rtw_macaddr_cfg(u8 *mac_addr) DBG_88E("MAC Address from efuse error, assign random one !!!\n"); } - DBG_88E("rtw_macaddr_cfg MAC Address = %pM\n", (mac_addr)); + DBG_88E("rtw_macaddr_cfg MAC Address = %pM\n", mac_addr); } void dump_ies(u8 *buf, u32 buf_len)