Staging: brcm80211: remove STATIC definition
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 5 Oct 2010 18:20:34 +0000 (11:20 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 5 Oct 2010 18:20:34 +0000 (11:20 -0700)
Use 'static', it's the correct thing to do.

Cc: Brett Rudley <brudley@broadcom.com>
Cc: Henry Ptasinski <henryp@broadcom.com>
Cc: Nohee Ko <noheek@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/brcmfmac/bcmutils.c
drivers/staging/brcm80211/include/bcmdefs.h
drivers/staging/brcm80211/util/hnddma.c

index 73eb086862236b42ade3530aa62e6ea06927e83f..68b57099a154a5e5e067c13dfbb9d997733a63d2 100644 (file)
@@ -1049,7 +1049,7 @@ int bcm_iovar_lencheck(const bcm_iovar_t *vi, void *arg, int len, bool set)
  * ****************************************************************************
  */
 
-STATIC const u8 crc8_table[256] = {
+static const u8 crc8_table[256] = {
        0x00, 0xF7, 0xB9, 0x4E, 0x25, 0xD2, 0x9C, 0x6B,
        0x4A, 0xBD, 0xF3, 0x04, 0x6F, 0x98, 0xD6, 0x21,
        0x94, 0x63, 0x2D, 0xDA, 0xB1, 0x46, 0x08, 0xFF,
@@ -1170,7 +1170,7 @@ uint16 hndcrc16(u8 *pdata,        /* pointer to array of data to process */
        return crc;
 }
 
-STATIC const uint32 crc32_table[256] = {
+static const uint32 crc32_table[256] = {
        0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,
        0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
        0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,
index b542da4d231efb728c89e0597f6144dc45e01af0..201510a9a4b6f53c6f3853cf1bb3ea5d74c046e4 100644 (file)
@@ -67,7 +67,6 @@
 #define BCMROMDAT_NAME(_data)  _data
 #define BCMROMFN(_fn)          _fn
 #define BCMROMFN_NAME(_fn)     _fn
-#define STATIC static
 #define BCMROMDAT_ARYSIZ(data) ARRAYSIZE(data)
 #define BCMROMDAT_SIZEOF(data) sizeof(data)
 #define BCMROMDAT_APATCH(data)
index c816604ad8014cd7955b2769f979a0a28b7fcc5d..a4e1a0df58a499052cf541a07e3298539e39b767 100644 (file)
@@ -273,7 +273,7 @@ static bool dma64_rxstopped(dma_info_t *di);
 static bool dma64_rxenabled(dma_info_t *di);
 static bool _dma64_addrext(osl_t *osh, dma64regs_t *dma64regs);
 
-STATIC inline uint32 parity32(uint32 data);
+static inline uint32 parity32(uint32 data);
 
 const di_fcn_t dma64proc = {
        (di_detach_t) _dma_detach,
@@ -612,7 +612,7 @@ dma32_dd_upd(dma_info_t *di, dma32dd_t *ddring, dmaaddr_t pa, uint outidx,
 }
 
 /* Check for odd number of 1's */
-STATIC inline uint32 parity32(uint32 data)
+static inline uint32 parity32(uint32 data)
 {
        data ^= data >> 16;
        data ^= data >> 8;