staging: vt6656: Use BIT() macro in vnt_mac_reg_bits_* functions
authorOscar Carter <oscar.carter@gmx.com>
Fri, 20 Mar 2020 18:13:26 +0000 (19:13 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 21 Mar 2020 10:03:16 +0000 (11:03 +0100)
The last parameter in the functions vnt_mac_reg_bits_on and
vnt_mac_reg_bits_off defines the bits to set or unset. So, it's more
clear to use the BIT() macro instead of an hexadecimal value.

Signed-off-by: Oscar Carter <oscar.carter@gmx.com>
Link: https://lore.kernel.org/r/20200320181326.12156-1-oscar.carter@gmx.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/baseband.c
drivers/staging/vt6656/card.c
drivers/staging/vt6656/main_usb.c

index 74b620b..0b5729a 100644 (file)
@@ -22,6 +22,7 @@
  *
  */
 
+#include <linux/bits.h>
 #include "mac.h"
 #include "baseband.h"
 #include "rf.h"
@@ -454,7 +455,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
                if (ret)
                        goto end;
 
-               ret = vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, 0x01);
+               ret = vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, BIT(0));
                if (ret)
                        goto end;
        } else if (priv->rf_type == RF_VT3226D0) {
@@ -463,7 +464,7 @@ int vnt_vt3184_init(struct vnt_private *priv)
                if (ret)
                        goto end;
 
-               ret = vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, 0x01);
+               ret = vnt_mac_reg_bits_on(priv, MAC_REG_PAPEDELAY, BIT(0));
                if (ret)
                        goto end;
        }
index 7958fc1..dc3ab10 100644 (file)
@@ -26,6 +26,7 @@
  *
  */
 
+#include <linux/bits.h>
 #include "device.h"
 #include "card.h"
 #include "baseband.h"
@@ -63,7 +64,8 @@ void vnt_set_channel(struct vnt_private *priv, u32 connection_channel)
        vnt_mac_reg_bits_on(priv, MAC_REG_MACCR, MACCR_CLRNAV);
 
        /* Set Channel[7] = 0 to tell H/W channel is changing now. */
-       vnt_mac_reg_bits_off(priv, MAC_REG_CHANNEL, 0xb0);
+       vnt_mac_reg_bits_off(priv, MAC_REG_CHANNEL,
+                            (BIT(7) | BIT(5) | BIT(4)));
 
        vnt_control_out(priv, MESSAGE_TYPE_SELECT_CHANNEL,
                        connection_channel, 0, 0, NULL);
index 10dcd21..8e7269c 100644 (file)
@@ -366,7 +366,7 @@ static int vnt_init_registers(struct vnt_private *priv)
        if (ret)
                goto end;
 
-       ret = vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL0, 0x01);
+       ret = vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL0, BIT(0));
        if (ret)
                goto end;