]> Pileus Git - ~andy/linux/blobdiff - drivers/staging/brcm80211/include/brcmu_utils.h
staging: brcm80211: removed unused #ifdef sections
[~andy/linux] / drivers / staging / brcm80211 / include / brcmu_utils.h
index ff8f3634d282f6686e17dc5fbbc0973a30d184ca..de627c211f66ca136d4e84ebe15547b1fd0d90df 100644 (file)
@@ -45,12 +45,8 @@ struct brcmu_strbuf {
 }
 
 /* osl multi-precedence packet queue */
-#ifndef PKTQ_LEN_DEFAULT
 #define PKTQ_LEN_DEFAULT        128    /* Max 128 packets */
-#endif
-#ifndef PKTQ_MAX_PREC
 #define PKTQ_MAX_PREC           16     /* Maximum precedence levels */
-#endif
 
 struct pktq_prec {
        struct sk_buff *head;   /* first packet to dequeue */
@@ -192,9 +188,7 @@ extern int brcmu_iovar_lencheck(const struct brcmu_iovar *table, void *arg,
 
 #define BCME_STRLEN            64      /* Max string length for BCM errors */
 
-#ifndef ABS
 #define        ABS(a)                  (((a) < 0) ? -(a) : (a))
-#endif                         /* ABS */
 
 #define CEIL(x, y)             (((x) + ((y)-1)) / (y))
 #define        ISPOWEROF2(x)           ((((x)-1)&(x)) == 0)