diff options
author | Roland Vossen <rvossen@broadcom.com> | 2010-12-07 11:45:39 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-12-08 17:27:47 -0500 |
commit | 0e4934748948b5886c965fe56207b41d3abd58e7 (patch) | |
tree | a6070469f4e463f5d610f27b4caeba62f465a34b | |
parent | 1f2fd4531d37553e4613f8f5e79cf199f47a82d2 (diff) |
staging: brcm80211: replaced typedef wlc_ap_info_t by struct wlc_ap_info
Code cleanup.
Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/brcm80211/sys/wlc_mac80211.h | 2 | ||||
-rw-r--r-- | drivers/staging/brcm80211/sys/wlc_types.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/brcm80211/sys/wlc_mac80211.h b/drivers/staging/brcm80211/sys/wlc_mac80211.h index 59a8d6beca1b..1d5149ee1207 100644 --- a/drivers/staging/brcm80211/sys/wlc_mac80211.h +++ b/drivers/staging/brcm80211/sys/wlc_mac80211.h | |||
@@ -749,7 +749,7 @@ struct wlc_info { | |||
749 | ac_bitmap_t apsd_trigger_ac; /* Permissible Acess Category in which APSD Null | 749 | ac_bitmap_t apsd_trigger_ac; /* Permissible Acess Category in which APSD Null |
750 | * Trigger frames can be send | 750 | * Trigger frames can be send |
751 | */ | 751 | */ |
752 | wlc_ap_info_t *ap; | 752 | struct wlc_ap_info *ap; |
753 | 753 | ||
754 | u8 htphy_membership; /* HT PHY membership */ | 754 | u8 htphy_membership; /* HT PHY membership */ |
755 | 755 | ||
diff --git a/drivers/staging/brcm80211/sys/wlc_types.h b/drivers/staging/brcm80211/sys/wlc_types.h index 9c18a7f592d3..9634a66582ac 100644 --- a/drivers/staging/brcm80211/sys/wlc_types.h +++ b/drivers/staging/brcm80211/sys/wlc_types.h | |||
@@ -24,7 +24,7 @@ struct wlc_hw_info; | |||
24 | struct wlc_if; | 24 | struct wlc_if; |
25 | typedef struct wl_if wl_if_t; | 25 | typedef struct wl_if wl_if_t; |
26 | struct ampdu_info; | 26 | struct ampdu_info; |
27 | typedef struct wlc_ap_info wlc_ap_info_t; | 27 | struct wlc_ap_info; |
28 | typedef struct antsel_info antsel_info_t; | 28 | typedef struct antsel_info antsel_info_t; |
29 | typedef struct bmac_pmq bmac_pmq_t; | 29 | typedef struct bmac_pmq bmac_pmq_t; |
30 | 30 | ||