[PATCH] wifi: rtlwifi: "foo * bar" should be "foo *bar"

hanyu001@208suo.com posted 1 patch 2 years, 6 months ago
drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] wifi: rtlwifi: "foo * bar" should be "foo *bar"
Posted by hanyu001@208suo.com 2 years, 6 months ago
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);
  }