staging: rtl8821ae: Fix rtl8821ae/hw.h pointer declaration style
authorMark Einon <mark.einon@gmail.com>
Thu, 10 Apr 2014 12:35:00 +0000 (13:35 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 Apr 2014 15:29:30 +0000 (08:29 -0700)
Fix all occurences of the checkpatch error:

ERROR: "foo* bar" should be "foo *bar"

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8821ae/rtl8821ae/hw.h

index 335d4ab5e39f4c652cfb945de69bdbdfa8471817..256e514f424ab25f425e744419e0695cfa26b0a3 100644 (file)
@@ -56,12 +56,12 @@ void rtl8821ae_set_key(struct ieee80211_hw *hw, u32 key_index,
 
 void rtl8821ae_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw,
                                              bool autoload_fail,
-                                             u8hwinfo);
+                                             u8 *hwinfo);
 void rtl8812ae_read_bt_coexist_info_from_hwpg(struct ieee80211_hw *hw,
                                              bool autoload_fail,
-                                             u8hwinfo);
-void rtl8821ae_bt_reg_init(struct ieee80211_hwhw);
-void rtl8821ae_bt_hw_init(struct ieee80211_hwhw);
+                                             u8 *hwinfo);
+void rtl8821ae_bt_reg_init(struct ieee80211_hw *hw);
+void rtl8821ae_bt_hw_init(struct ieee80211_hw *hw);
 void rtl8821ae_suspend(struct ieee80211_hw *hw);
 void rtl8821ae_resume(struct ieee80211_hw *hw);
 void rtl8821ae_allow_all_destaddr(struct ieee80211_hw *hw,
This page took 0.027433 seconds and 5 git commands to generate.