]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
staging: brcm80211: replaced typedef wlccore_t by struct wlccore
authorRoland Vossen <rvossen@broadcom.com>
Tue, 7 Dec 2010 16:45:45 +0000 (17:45 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 8 Dec 2010 22:27:48 +0000 (14:27 -0800)
Code cleanup

Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/sys/wlc_alloc.c
drivers/staging/brcm80211/sys/wlc_mac80211.h

index 09a1efd7b430adf7c41c77892fc85e57b8f0fe8e..7d04d532a02407237a17d186df3b080b45a36bc1 100644 (file)
@@ -282,7 +282,8 @@ struct wlc_info *wlc_attach_malloc(struct osl_info *osh, uint unit, uint *err,
                }
        }
 
-       wlc->corestate = (wlccore_t *)wlc_calloc(osh, unit, sizeof(wlccore_t));
+       wlc->corestate = (struct wlccore *)wlc_calloc(osh, unit,
+                                                     sizeof(struct wlccore));
        if (wlc->corestate == NULL) {
                *err = 1026;
                goto fail;
index acd854886df61defda0e4bc0f711bae42b3c553a..ba2b953800e316046d7b0ee2f4b923f3f4b0d395 100644 (file)
@@ -302,7 +302,7 @@ typedef struct wlc_stf {
 /*
  * core state (mac)
  */
-typedef struct wlccore {
+struct wlccore {
        uint coreidx;           /* # sb enumerated core */
 
        /* fifo */
@@ -310,7 +310,7 @@ typedef struct wlccore {
        s16 txpktpend[NFIFO];   /* tx admission control */
 
        macstat_t *macstat_snapshot;    /* mac hw prev read values */
-} wlccore_t;
+};
 
 /*
  * band state (phy+ana+radio)
@@ -532,9 +532,9 @@ struct wlc_info {
        bool clk;               /* core is out of reset and has clock */
 
        /* multiband */
-       wlccore_t *core;        /* pointer to active io core */
+       struct wlccore *core;   /* pointer to active io core */
        struct wlcband *band;   /* pointer to active per-band state */
-       wlccore_t *corestate;   /* per-core state (one per hw core) */
+       struct wlccore *corestate;      /* per-core state (one per hw core) */
        /* per-band state (one per phy/radio): */
        struct wlcband *bandstate[MAXBANDS];