]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: gdm72xx: move T_CAPABILITY definitions to hci.h
authorMichalis Pappas <mpappas@fastmail.fm>
Wed, 9 Jul 2014 19:21:21 +0000 (20:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Jul 2014 04:16:52 +0000 (21:16 -0700)
Signed-off-by: Michalis Pappas <mpappas@fastmail.fm>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gdm72xx/gdm_wimax.c
drivers/staging/gdm72xx/hci.h

index 0f71d419ede6dfafd38b33736c24d56a09205c13..1693cc0970ba55fd7bc4cf1cf6faabd6759009d6 100644 (file)
@@ -591,11 +591,6 @@ static void gdm_wimax_prepare_device(struct net_device *dev)
        u32 val = 0;
        __be32 val_be32;
 
-       #define BIT_MULTI_CS    0
-       #define BIT_WIMAX               1
-       #define BIT_QOS                 2
-       #define BIT_AGGREGATION 3
-
        /* GetInformation mac address */
        len = 0;
        hci->cmd_evt = cpu_to_be16(WIMAX_GET_INFO);
@@ -603,12 +598,12 @@ static void gdm_wimax_prepare_device(struct net_device *dev)
        hci->length = cpu_to_be16(len);
        gdm_wimax_send(nic, hci, HCI_HEADER_SIZE+len);
 
-       val = (1<<BIT_WIMAX) | (1<<BIT_MULTI_CS);
+       val = T_CAPABILITY_WIMAX | T_CAPABILITY_MULTI_CS;
        #if defined(CONFIG_WIMAX_GDM72XX_QOS)
-       val |= (1<<BIT_QOS);
+       val |= T_CAPABILITY_QOS;
        #endif
        #if defined(CONFIG_WIMAX_GDM72XX_WIMAX2)
-       val |= (1<<BIT_AGGREGATION);
+       val |= T_CAPABILITY_AGGREGATION;
        #endif
 
        /* Set capability */
index dd2931d004512e36ed183d538c771fbf4f2665b9..10a6bfa6e998969a5cb4aa5c9592a219e8d887d0 100644 (file)
 #define T_FFTSIZE                      (0xda   | (4 << 16))
 #define T_DUPLEX_MODE                  (0xdb   | (4 << 16))
 
+/* T_CAPABILITY */
+#define T_CAPABILITY_MULTI_CS          (1 << 0)
+#define T_CAPABILITY_WIMAX             (1 << 1)
+#define T_CAPABILITY_QOS               (1 << 2)
+#define T_CAPABILITY_AGGREGATION       (1 << 3)
+
 struct hci_s {
        __be16  cmd_evt;
        __be16  length;