aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArend van Spriel <[email protected]>2011-06-29 16:47:06 -0700
committerGreg Kroah-Hartman <[email protected]>2011-07-05 09:57:16 -0700
commit96a6062b877a4b1bfd09b9b0d188dc44847fd2b1 (patch)
treef1cd46ab06103b6add34190720c6029b217430f2
parent4aae86b437b5b2fd5985e04af04c3a9c632bff3e (diff)
staging: brcm80211: replace macro BCM_MSG_IFNAME_MAX with IFNAMSIZ
In dhd.h the macro BCM_MSG_IFNAME_MAX was defined and used. As this is used to carry the interface name we might as well use IFNAMSIZ which results in the same size. Signed-off-by: Arend van Spriel <[email protected]> Reviewed-by: Roland Vossen <[email protected]> Reviewed-by: Franky Lin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/brcm80211/brcmfmac/dhd.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/brcm80211/brcmfmac/dhd.h b/drivers/staging/brcm80211/brcmfmac/dhd.h
index 9b27982d663a..55cbd8a55660 100644
--- a/drivers/staging/brcm80211/brcmfmac/dhd.h
+++ b/drivers/staging/brcm80211/brcmfmac/dhd.h
@@ -136,8 +136,6 @@ struct dhd_info;
#define DOT11_BSSTYPE_ANY 2
#define DOT11_MAX_DEFAULT_KEYS 4
-#define BCM_MSG_IFNAME_MAX 16
-
#define WLC_EVENT_MSG_LINK 0x01
#define WLC_EVENT_MSG_FLUSHTXQ 0x02
#define WLC_EVENT_MSG_GROUP 0x04
@@ -151,7 +149,7 @@ typedef struct {
u32 auth_type;
u32 datalen;
u8 addr[ETH_ALEN];
- char ifname[BCM_MSG_IFNAME_MAX];
+ char ifname[IFNAMSIZ];
} __attribute__((packed)) wl_event_msg_t;
typedef struct bcmeth_hdr {