Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: vt6655: align function parameters to open parenthesis

Alignment styles are used interchangeably, align parameters to open
parenthesis and fix issues reported by checkpatch.pl

Signed-off-by: Marko Stankovic <dartnorris@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Marko Stankovic and committed by
Greg Kroah-Hartman
7959c331 fc0f0bd6

+9 -8
+7 -6
drivers/staging/vt6655/device_main.c
··· 1310 1310 } 1311 1311 1312 1312 static void vnt_bss_info_changed(struct ieee80211_hw *hw, 1313 - struct ieee80211_vif *vif, struct ieee80211_bss_conf *conf, 1314 - u32 changed) 1313 + struct ieee80211_vif *vif, 1314 + struct ieee80211_bss_conf *conf, u32 changed) 1315 1315 { 1316 1316 struct vnt_private *priv = hw->priv; 1317 1317 ··· 1401 1401 } 1402 1402 1403 1403 static u64 vnt_prepare_multicast(struct ieee80211_hw *hw, 1404 - struct netdev_hw_addr_list *mc_list) 1404 + struct netdev_hw_addr_list *mc_list) 1405 1405 { 1406 1406 struct vnt_private *priv = hw->priv; 1407 1407 struct netdev_hw_addr *ha; ··· 1420 1420 } 1421 1421 1422 1422 static void vnt_configure(struct ieee80211_hw *hw, 1423 - unsigned int changed_flags, unsigned int *total_flags, u64 multicast) 1423 + unsigned int changed_flags, 1424 + unsigned int *total_flags, u64 multicast) 1424 1425 { 1425 1426 struct vnt_private *priv = hw->priv; 1426 1427 u8 rx_mode = 0; ··· 1482 1481 } 1483 1482 1484 1483 static int vnt_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, 1485 - struct ieee80211_vif *vif, struct ieee80211_sta *sta, 1486 - struct ieee80211_key_conf *key) 1484 + struct ieee80211_vif *vif, struct ieee80211_sta *sta, 1485 + struct ieee80211_key_conf *key) 1487 1486 { 1488 1487 struct vnt_private *priv = hw->priv; 1489 1488
+2 -2
drivers/staging/vt6655/key.c
··· 27 27 #include "mac.h" 28 28 29 29 static int vnt_set_keymode(struct ieee80211_hw *hw, u8 *mac_addr, 30 - struct ieee80211_key_conf *key, u32 key_type, u32 mode, 31 - bool onfly_latch) 30 + struct ieee80211_key_conf *key, u32 key_type, 31 + u32 mode, bool onfly_latch) 32 32 { 33 33 struct vnt_private *priv = hw->priv; 34 34 u8 broadcast[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};