diff mbox series

wifi: rtlwifi: "foo * bar" should be "foo *bar"

Message ID cb183c8c82f9bcaa245efb4a8878ba1b@208suo.com (mailing list archive)
State Rejected
Delegated to: Kalle Valo
Headers show
Series wifi: rtlwifi: "foo * bar" should be "foo *bar" | expand

Commit Message

hanyu001@208suo.com July 20, 2023, 6:04 a.m. UTC
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 mbox series

Patch

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);