diff options
author | Florian Ziegler <florian.ziegler@posteo.de> | 2021-02-19 00:22:15 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-10 09:25:25 +0100 |
commit | 2917b109b36ac38ed258d488c993e1b867ad863b (patch) | |
tree | a924a45fc41fd6a0ba0cac6c6c3505979424fd63 /drivers/staging/vt6656/card.c | |
parent | 85922358fac966d69127524aff37b69d8437040e (diff) | |
download | linux-stable-2917b109b36ac38ed258d488c993e1b867ad863b.tar.gz linux-stable-2917b109b36ac38ed258d488c993e1b867ad863b.tar.bz2 linux-stable-2917b109b36ac38ed258d488c993e1b867ad863b.zip |
staging: vt6656: Fix alignment of function args
Align function arguments to fix checkpatch.pl CHECK message and rewrap
to match the file's style.
Signed-off-by: Florian Ziegler <florian.ziegler@posteo.de>
Link: https://lore.kernel.org/r/20210218232215.17508-1-florian.ziegler@posteo.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6656/card.c')
-rw-r--r-- | drivers/staging/vt6656/card.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/vt6656/card.c b/drivers/staging/vt6656/card.c index 10f3dfda83b5..396736eee690 100644 --- a/drivers/staging/vt6656/card.c +++ b/drivers/staging/vt6656/card.c @@ -375,7 +375,8 @@ int vnt_radio_power_off(struct vnt_private *priv) case RF_VT3226D0: case RF_VT3342A0: ret = vnt_mac_reg_bits_off(priv, MAC_REG_SOFTPWRCTL, - (SOFTPWRCTL_SWPE2 | SOFTPWRCTL_SWPE3)); + (SOFTPWRCTL_SWPE2 | + SOFTPWRCTL_SWPE3)); break; } |