staging: rtl8821ae: Remove space after unary operator in efuse.c
authorFabien Malfoy <fabien.malfoy@laposte.net>
Mon, 15 Sep 2014 07:02:36 +0000 (09:02 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2014 23:10:40 +0000 (16:10 -0700)
Several pointer declaration syntax have been fixed to match the coding style.

Signed-off-by: Fabien Malfoy <fabien.malfoy@laposte.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8821ae/efuse.c

index 206012cf3601b46fcbe656f4b5d1f067d6ccca76..694082e4db5aeb1f8bdd7207ba8a46eaa14c1c81 100644 (file)
@@ -52,11 +52,11 @@ static const struct efuse_map RTL8712_SDIO_EFUSE_TABLE[] = {
 };
 
 static void efuse_shadow_read_1byte(struct ieee80211_hw *hw, u16 offset,
-                                   u8 * value);
+                                   u8 *value);
 static void efuse_shadow_read_2byte(struct ieee80211_hw *hw, u16 offset,
-                                   u16 * value);
+                                   u16 *value);
 static void efuse_shadow_read_4byte(struct ieee80211_hw *hw, u16 offset,
-                                   u32 * value);
+                                   u32 *value);
 static void efuse_shadow_write_1byte(struct ieee80211_hw *hw, u16 offset,
                                     u8 value);
 static void efuse_shadow_write_2byte(struct ieee80211_hw *hw, u16 offset,
@@ -65,15 +65,15 @@ static void efuse_shadow_write_4byte(struct ieee80211_hw *hw, u16 offset,
                                     u32 value);
 static int efuse_one_byte_write(struct ieee80211_hw *hw, u16 addr,
                                u8 data);
-static void efuse_read_all_map(struct ieee80211_hw *hw, u8 * efuse);
+static void efuse_read_all_map(struct ieee80211_hw *hw, u8 *efuse);
 static int efuse_pg_packet_read(struct ieee80211_hw *hw, u8 offset,
                                u8 *data);
 static int efuse_pg_packet_write(struct ieee80211_hw *hw, u8 offset,
-                                u8 word_en, u8 * data);
-static void efuse_word_enable_data_read(u8 word_en, u8 * sourdata,
-                                       u8 * targetdata);
+                                u8 word_en, u8 *data);
+static void efuse_word_enable_data_read(u8 word_en, u8 *sourdata,
+                                       u8 *targetdata);
 static u8 efuse_word_enable_data_write(struct ieee80211_hw *hw,
-                                      u16 efuse_addr, u8 word_en, u8 * data);
+                                      u16 efuse_addr, u8 word_en, u8 *data);
 static void efuse_power_switch(struct ieee80211_hw *hw, u8 bwrite,
                                        u8 pwrstate);
 static u16 efuse_get_current_size(struct ieee80211_hw *hw);
This page took 0.025194 seconds and 5 git commands to generate.