]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Staging: brcm80211: remove sbpciregs_t typedef
authorGreg Kroah-Hartman <gregkh@suse.de>
Tue, 12 Oct 2010 21:04:26 +0000 (14:04 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 12 Oct 2010 21:04:26 +0000 (14:04 -0700)
don't use a typedef, use a 'struct'.

Cc: Brett Rudley <brudley@broadcom.com>
Cc: Henry Ptasinski <henryp@broadcom.com>
Cc: Nohee Ko <noheek@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/brcm80211/include/pci_core.h
drivers/staging/brcm80211/util/nicpci.c
drivers/staging/brcm80211/util/siutils.c

index 90ef3695da9219b2857a6a504bd56fc6c63d005e..9153dcb8160e1289c42e95783e94d6215db128a3 100644 (file)
@@ -27,7 +27,7 @@
 #endif
 
 /* Sonics side: PCI core and host control registers */
-typedef struct sbpciregs {
+struct sbpciregs {
        u32 control;            /* PCI control */
        u32 PAD[3];
        u32 arbcontrol; /* PCI arbiter control */
@@ -52,7 +52,7 @@ typedef struct sbpciregs {
        u32 pcicfg[4][64];      /* 0x400 - 0x7FF, PCI Cfg Space (>=rev8) */
        u16 sprom[36];  /* SPROM shadow Area */
        u32 PAD[46];
-} sbpciregs_t;
+};
 
 #endif                         /* _LANGUAGE_ASSEMBLY */
 
index 36696f17e71fca05717295e752bbb5ffd6662219..09c2e10d8e2a332310f7bff15f730d3f53642fc4 100644 (file)
@@ -32,7 +32,7 @@
 typedef struct {
        union {
                sbpcieregs_t *pcieregs;
-               sbpciregs_t *pciregs;
+               struct sbpciregs *pciregs;
        } regs;                 /* Memory mapped register to the core */
 
        si_t *sih;              /* System interconnect handle */
@@ -136,7 +136,7 @@ void *pcicore_init(si_t *sih, osl_t *osh, void *regs)
                ASSERT(cap_ptr);
                pi->pciecap_lcreg_offset = cap_ptr + PCIE_CAP_LINKCTRL_OFFSET;
        } else
-               pi->regs.pciregs = (sbpciregs_t *) regs;
+               pi->regs.pciregs = (struct sbpciregs *) regs;
 
        return pi;
 }
index ddbbb60c97982ea6a2bb51f8c8bd8d71cef731f2..963dc3fc6153df0755b08e8a2bde9853d0899136 100644 (file)
@@ -1665,7 +1665,7 @@ void si_pci_down(si_t *sih)
 void si_pci_setup(si_t *sih, uint coremask)
 {
        si_info_t *sii;
-       sbpciregs_t *pciregs = NULL;
+       struct sbpciregs *pciregs = NULL;
        u32 siflag = 0, w;
        uint idx = 0;
 
@@ -1685,8 +1685,7 @@ void si_pci_setup(si_t *sih, uint coremask)
                siflag = si_flag(sih);
 
                /* switch over to pci core */
-               pciregs =
-                   (sbpciregs_t *) si_setcoreidx(sih, sii->pub.buscoreidx);
+               pciregs = (struct sbpciregs *)si_setcoreidx(sih, sii->pub.buscoreidx);
        }
 
        /*
@@ -1727,7 +1726,7 @@ void si_pci_setup(si_t *sih, uint coremask)
 int si_pci_fixcfg(si_t *sih)
 {
        uint origidx, pciidx;
-       sbpciregs_t *pciregs = NULL;
+       struct sbpciregs *pciregs = NULL;
        sbpcieregs_t *pcieregs = NULL;
        void *regs = NULL;
        u16 val16, *reg16 = NULL;
@@ -1748,7 +1747,7 @@ int si_pci_fixcfg(si_t *sih)
                ASSERT(pcieregs != NULL);
                reg16 = &pcieregs->sprom[SRSH_PI_OFFSET];
        } else if (sii->pub.buscoretype == PCI_CORE_ID) {
-               pciregs = (sbpciregs_t *) si_setcore(&sii->pub, PCI_CORE_ID, 0);
+               pciregs = (struct sbpciregs *)si_setcore(&sii->pub, PCI_CORE_ID, 0);
                regs = pciregs;
                ASSERT(pciregs != NULL);
                reg16 = &pciregs->sprom[SRSH_PI_OFFSET];