]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"'
authorJason Cooper <jason@lakedaemon.net>
Tue, 14 Sep 2010 13:45:41 +0000 (09:45 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 14 Sep 2010 23:23:41 +0000 (16:23 -0700)
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/include/linux_osl.h
drivers/staging/brcm80211/include/linuxver.h
drivers/staging/brcm80211/include/proto/802.11.h
drivers/staging/brcm80211/include/proto/ethernet.h
drivers/staging/brcm80211/include/typedefs.h
drivers/staging/brcm80211/sys/wl_mac80211.c
drivers/staging/brcm80211/sys/wlc_bmac.c
drivers/staging/brcm80211/sys/wlc_key.h
drivers/staging/brcm80211/sys/wlc_pub.h

index 28b61caf43503b6998955830f04ac9de21d42e11..0e61de1b5fc11ae6439ece3ea968be11bbffb96b 100644 (file)
@@ -88,16 +88,16 @@ typedef struct {
 
 #define PKTFREESETCB(osh, _tx_fn, _tx_ctx)                     \
        do {                                                    \
-               ((osl_pubinfo_t*)osh)->tx_fn = _tx_fn;          \
-               ((osl_pubinfo_t*)osh)->tx_ctx = _tx_ctx;        \
+               ((osl_pubinfo_t *)osh)->tx_fn = _tx_fn;         \
+               ((osl_pubinfo_t *)osh)->tx_ctx = _tx_ctx;       \
        } while (0)
 
 #ifdef BCMSDIO
 #define REGOPSSET(osh, rreg, wreg, ctx)                        \
        do {                                            \
-               ((osl_pubinfo_t*)osh)->rreg_fn = rreg;  \
-               ((osl_pubinfo_t*)osh)->wreg_fn = wreg;  \
-               ((osl_pubinfo_t*)osh)->reg_ctx = ctx;   \
+               ((osl_pubinfo_t *)osh)->rreg_fn = rreg; \
+               ((osl_pubinfo_t *)osh)->wreg_fn = wreg; \
+               ((osl_pubinfo_t *)osh)->reg_ctx = ctx;  \
        } while (0)
 #endif
 
@@ -120,7 +120,7 @@ extern uint osl_malloc_failed(osl_t *osh);
 #define        DMA_ALLOC_CONSISTENT(osh, size, align, tot, pap, dmah) \
        osl_dma_alloc_consistent((osh), (size), (align), (tot), (pap))
 #define        DMA_FREE_CONSISTENT(osh, va, size, pa, dmah) \
-       osl_dma_free_consistent((osh), (void*)(va), (size), (pa))
+       osl_dma_free_consistent((osh), (void *)(va), (size), (pa))
 extern uint osl_dma_consistent_align(void);
 extern void *osl_dma_alloc_consistent(osl_t *osh, uint size, uint16 align,
                                      uint *tot, ulong *pap);
@@ -149,9 +149,9 @@ extern void osl_dma_unmap(osl_t *osh, uint pa, uint size, int direction);
 #endif
 
 #if defined(BCMSDIO)
-#define SELECT_BUS_WRITE(osh, mmap_op, bus_op) if (((osl_pubinfo_t*)(osh))->mmbus) \
+#define SELECT_BUS_WRITE(osh, mmap_op, bus_op) if (((osl_pubinfo_t *)(osh))->mmbus) \
                mmap_op else bus_op
-#define SELECT_BUS_READ(osh, mmap_op, bus_op) (((osl_pubinfo_t*)(osh))->mmbus) ? \
+#define SELECT_BUS_READ(osh, mmap_op, bus_op) (((osl_pubinfo_t *)(osh))->mmbus) ? \
                mmap_op : bus_op
 #else
 #define SELECT_BUS_WRITE(osh, mmap_op, bus_op) mmap_op
@@ -319,16 +319,16 @@ extern int osl_error(int bcmerror);
 #define        PKTGET(osh, len, send)          osl_pktget((osh), (len))
 #define        PKTDUP(osh, skb)                osl_pktdup((osh), (skb))
 #define        PKTFREE(osh, skb, send)         osl_pktfree((osh), (skb), (send))
-#define        PKTDATA(skb)                    (((struct sk_buff*)(skb))->data)
-#define        PKTLEN(skb)                     (((struct sk_buff*)(skb))->len)
-#define PKTHEADROOM(skb)               (PKTDATA(skb)-(((struct sk_buff*)(skb))->head))
-#define PKTTAILROOM(skb) ((((struct sk_buff*)(skb))->end)-(((struct sk_buff*)(skb))->tail))
-#define        PKTNEXT(skb)                    (((struct sk_buff*)(skb))->next)
-#define        PKTSETNEXT(skb, x)              (((struct sk_buff*)(skb))->next = (struct sk_buff*)(x))
-#define        PKTSETLEN(skb, len)             __skb_trim((struct sk_buff*)(skb), (len))
-#define        PKTPUSH(skb, bytes)             skb_push((struct sk_buff*)(skb), (bytes))
-#define        PKTPULL(skb, bytes)             skb_pull((struct sk_buff*)(skb), (bytes))
-#define        PKTTAG(skb)                     ((void*)(((struct sk_buff*)(skb))->cb))
+#define        PKTDATA(skb)                    (((struct sk_buff *)(skb))->data)
+#define        PKTLEN(skb)                     (((struct sk_buff *)(skb))->len)
+#define PKTHEADROOM(skb)               (PKTDATA(skb)-(((struct sk_buff *)(skb))->head))
+#define PKTTAILROOM(skb) ((((struct sk_buff *)(skb))->end)-(((struct sk_buff *)(skb))->tail))
+#define        PKTNEXT(skb)                    (((struct sk_buff *)(skb))->next)
+#define        PKTSETNEXT(skb, x)              (((struct sk_buff *)(skb))->next = (struct sk_buff*)(x))
+#define        PKTSETLEN(skb, len)             __skb_trim((struct sk_buff *)(skb), (len))
+#define        PKTPUSH(skb, bytes)             skb_push((struct sk_buff *)(skb), (bytes))
+#define        PKTPULL(skb, bytes)             skb_pull((struct sk_buff *)(skb), (bytes))
+#define        PKTTAG(skb)                     ((void *)(((struct sk_buff *)(skb))->cb))
 #define PKTALLOCED(osh)                        (((osl_pubinfo_t *)(osh))->pktalloced)
 #define PKTSETPOOL(osh, skb, x, y)     do {} while (0)
 #define PKTPOOL(osh, skb)              FALSE
@@ -344,15 +344,15 @@ extern void osl_pktfree(osl_t *osh, void *skb, bool send);
 extern void *osl_pktget(osl_t *osh, uint len);
 extern void *osl_pktdup(osl_t *osh, void *skb);
 
-#define        PKTLINK(skb)                    (((struct sk_buff*)(skb))->prev)
-#define        PKTSETLINK(skb, x)              (((struct sk_buff*)(skb))->prev = (struct sk_buff*)(x))
-#define        PKTPRIO(skb)                    (((struct sk_buff*)(skb))->priority)
-#define        PKTSETPRIO(skb, x)              (((struct sk_buff*)(skb))->priority = (x))
-#define PKTSUMNEEDED(skb)              (((struct sk_buff*)(skb))->ip_summed == CHECKSUM_HW)
-#define PKTSETSUMGOOD(skb, x)          (((struct sk_buff*)(skb))->ip_summed = \
+#define        PKTLINK(skb)                    (((struct sk_buff *)(skb))->prev)
+#define        PKTSETLINK(skb, x)              (((struct sk_buff *)(skb))->prev = (struct sk_buff*)(x))
+#define        PKTPRIO(skb)                    (((struct sk_buff *)(skb))->priority)
+#define        PKTSETPRIO(skb, x)              (((struct sk_buff *)(skb))->priority = (x))
+#define PKTSUMNEEDED(skb)              (((struct sk_buff *)(skb))->ip_summed == CHECKSUM_HW)
+#define PKTSETSUMGOOD(skb, x)          (((struct sk_buff *)(skb))->ip_summed = \
                                                ((x) ? CHECKSUM_UNNECESSARY : CHECKSUM_NONE))
 /* PKTSETSUMNEEDED and PKTSUMGOOD are not possible because skb->ip_summed is overloaded */
-#define PKTSHARED(skb)                  (((struct sk_buff*)(skb))->cloned)
+#define PKTSHARED(skb)                  (((struct sk_buff *)(skb))->cloned)
 
 #ifdef BCMSDIO
 #define RPC_READ_REG(osh, r) (\
index 3305d41298a65c08d24d1e05b0d84efa4dec46bd..98768d310ff2e5b4dacc68608c0f4c7c14c95357 100644 (file)
@@ -104,6 +104,6 @@ typedef irqreturn_t(*FN_ISR) (int irq, void *dev_id, struct pt_regs * ptregs);
                        send_sig(sig, tsk, 1); \
        } while (0)
 
-#define WL_DEV_IF(dev)          ((wl_if_t*)netdev_priv(dev))
+#define WL_DEV_IF(dev)          ((wl_if_t *)netdev_priv(dev))
 
 #endif                         /* _linuxver_h_ */
index ade5ac8029265e9f74960fce5fff31f4d8fd4a10..a0f7de969f2365d086658f1cb2b37d3081587e1a 100644 (file)
@@ -653,7 +653,7 @@ BWL_PRE_PACKED_STRUCT struct dot11_management_notification {
 #define WME_INVALID_PARAMETERS         1
 #define WME_ADMISSION_REFUSED          3
 
-#define BCN_PRB_SSID(body) ((char*)(body) + DOT11_BCN_PRB_LEN)
+#define BCN_PRB_SSID(body) ((char *)(body) + DOT11_BCN_PRB_LEN)
 
 #define DOT11_OPEN_SYSTEM      0
 #define DOT11_SHARED_KEY       1
index 9d90b8d7f00c57e82588cddd5f57b67ff4bde919..9ce8de8cd44cadb433abe820687956a9e9c62565 100644 (file)
@@ -76,14 +76,14 @@ BWL_PRE_PACKED_STRUCT struct ether_addr {
 
 #define ETHER_ISMULTI(ea) (((const uint8 *)(ea))[0] & 1)
 
-#define        ether_cmp(a, b) (!(((short*)a)[0] == ((short*)b)[0]) | \
-                        !(((short*)a)[1] == ((short*)b)[1]) | \
-                        !(((short*)a)[2] == ((short*)b)[2]))
+#define        ether_cmp(a, b) (!(((short *)a)[0] == ((short *)b)[0]) | \
+                        !(((short *)a)[1] == ((short *)b)[1]) | \
+                        !(((short *)a)[2] == ((short *)b)[2]))
 
 #define        ether_copy(s, d) { \
-               ((short*)d)[0] = ((short*)s)[0]; \
-               ((short*)d)[1] = ((short*)s)[1]; \
-               ((short*)d)[2] = ((short*)s)[2]; }
+               ((short *)d)[0] = ((short *)s)[0]; \
+               ((short *)d)[1] = ((short *)s)[1]; \
+               ((short *)d)[2] = ((short *)s)[2]; }
 
 static const struct ether_addr ether_bcast = { {255, 255, 255, 255, 255, 255} };
 static const struct ether_addr ether_null = { {0, 0, 0, 0, 0, 0} };
index f7d1a5e7efc05567f144f7a4489366b9a81799cd..45a56b4967ee3b540b303359171dd79ffc38a323 100644 (file)
@@ -162,7 +162,7 @@ typedef float64 float_t;
 /* define PTRSZ, INLINE */
 
 #ifndef PTRSZ
-#define        PTRSZ   sizeof(char*)
+#define        PTRSZ   sizeof(char *)
 #endif
 
 /* Detect compiler type. */
index 03eca6b8a480dff0d909e217b5826a9cd5ffee02..2ccfcf7c1db63198e87bb5cc667be123f4f679dc 100644 (file)
@@ -161,7 +161,7 @@ struct ieee80211_tkip_data {
 };
 
 #ifndef WLC_HIGH_ONLY
-#define        WL_INFO(dev)            ((wl_info_t*)(WL_DEV_IF(dev)->wl))      /* points to wl */
+#define        WL_INFO(dev)            ((wl_info_t *)(WL_DEV_IF(dev)->wl))     /* points to wl */
 static int wl_request_fw(wl_info_t *wl, struct pci_dev *pdev);
 static void wl_release_fw(wl_info_t *wl);
 #endif
index 0ddc79421d07b8f3df6924077b17bb9443aa4524..c22394d845357e67a50b0ed0710537d9e503da63 100644 (file)
 
 #define DMAREG(wlc_hw, direction, fifonum)     (D11REV_LT(wlc_hw->corerev, 11) ? \
        ((direction == DMA_TX) ? \
-               (void*)(uintptr)&(wlc_hw->regs->fifo.f32regs.dmaregs[fifonum].xmt) : \
-               (void*)(uintptr)&(wlc_hw->regs->fifo.f32regs.dmaregs[fifonum].rcv)) : \
+               (void *)(uintptr)&(wlc_hw->regs->fifo.f32regs.dmaregs[fifonum].xmt) : \
+               (void *)(uintptr)&(wlc_hw->regs->fifo.f32regs.dmaregs[fifonum].rcv)) : \
        ((direction == DMA_TX) ? \
-               (void*)(uintptr)&(wlc_hw->regs->fifo.f64regs[fifonum].dmaxmt) : \
-               (void*)(uintptr)&(wlc_hw->regs->fifo.f64regs[fifonum].dmarcv)))
+               (void *)(uintptr)&(wlc_hw->regs->fifo.f64regs[fifonum].dmaxmt) : \
+               (void *)(uintptr)&(wlc_hw->regs->fifo.f64regs[fifonum].dmarcv)))
 
 /*
  * The following table lists the buffer memory allocated to xmt fifos in HW.
index 9d2ea4ebc9d42f75c5843e980c4b063375720446..0abc958ca515262f9342468aa085ef97751e2240 100644 (file)
@@ -69,7 +69,7 @@ struct wlc_bsscfg;
 
 /* default key */
 #define WSEC_BSS_DEFAULT_KEY(bsscfg) (((bsscfg)->wsec_index == -1) ? \
-       (struct wsec_key*)NULL : (bsscfg)->bss_def_keys[(bsscfg)->wsec_index])
+       (struct wsec_key *)NULL : (bsscfg)->bss_def_keys[(bsscfg)->wsec_index])
 
 /* Macros for key management in IBSS mode */
 #define WSEC_IBSS_MAX_PEERS    16      /* Max # of IBSS Peers */
index b7c986685fc777a6afb95f193e63535f2b0893bb..fdf854f8e02b2c1bd279de2694bab042eec470d9 100644 (file)
@@ -417,7 +417,7 @@ typedef struct {
        } shared;
 } wlc_pkttag_t;
 
-#define WLPKTTAG(p) ((wlc_pkttag_t*)PKTTAG(p))
+#define WLPKTTAG(p) ((wlc_pkttag_t *)PKTTAG(p))
 
 /* Flags used in wlc_pkttag_t.
  * If adding a flag, be sure to check if WLPKTTAG_FLAG_MOVE should transfer it.