* [PATCH] wifi: rtlwifi: "foo * bar" should be "foo *bar"
[not found] <tencent_1E1DC9F32D48318BC38ABDA111410EB69808@qq.com>
@ 2023-07-20 6:04 ` hanyu001
0 siblings, 0 replies; only message in thread
From: hanyu001 @ 2023-07-20 6:04 UTC (permalink / raw)
To: pkshih, kvalo; +Cc: linux-wireless, linux-kernel
This patch fixes the checkpatch.pl error:
./drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c:416: ERROR: "foo
* bar" should be "foo *bar"
Signed-off-by: Yu Han<hanyu001@208suo.com>
---
drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c
b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c
index b70767e..c86102b 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c
@@ -413,7 +413,7 @@ static void _rtl_rx_process(struct ieee80211_hw *hw,
struct sk_buff *skb)
ieee80211_rx(hw, skb);
}
-void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff * skb)
+void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff *skb)
{
_rtl_rx_process(hw, skb);
}
^ permalink raw reply [flat|nested] only message in thread