aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/sys
diff options
context:
space:
mode:
authorJason Cooper <jason@lakedaemon.net>2010-09-14 09:45:51 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-09-14 19:24:20 -0400
commit5fee254098c11a52ce04e1efdc8c090caf592bfd (patch)
treebe876da62be1d0e620fb496191b05b43526e97e2 /drivers/staging/brcm80211/sys
parent92dfc7d18a123fcf22beaf23036ba02a13416e3e (diff)
staging: brcm80211: fix remaining checkpatch errors.
Remaining errors are due to the use of typedefs. They should dissappear once the typedefs get cleaned up. Signed-off-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/brcm80211/sys')
-rw-r--r--drivers/staging/brcm80211/sys/wl_mac80211.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/staging/brcm80211/sys/wl_mac80211.c b/drivers/staging/brcm80211/sys/wl_mac80211.c
index adcac6dddf9..71bd46383c1 100644
--- a/drivers/staging/brcm80211/sys/wl_mac80211.c
+++ b/drivers/staging/brcm80211/sys/wl_mac80211.c
@@ -1611,14 +1611,14 @@ static void __devexit wl_remove(struct pci_dev *pdev)
1611} 1611}
1612 1612
1613static struct pci_driver wl_pci_driver = { 1613static struct pci_driver wl_pci_driver = {
1614 name: "brcm80211", 1614 .name = "brcm80211",
1615 probe: wl_pci_probe, 1615 .probe = wl_pci_probe,
1616#ifdef LINUXSTA_PS 1616#ifdef LINUXSTA_PS
1617 suspend: wl_suspend, 1617 .suspend = wl_suspend,
1618 resume: wl_resume, 1618 .resume = wl_resume,
1619#endif /* LINUXSTA_PS */ 1619#endif /* LINUXSTA_PS */
1620 remove: __devexit_p(wl_remove), 1620 .remove = __devexit_p(wl_remove),
1621 id_table: wl_id_table, 1621 .id_table = wl_id_table,
1622}; 1622};
1623#endif /* !BCMSDIO */ 1623#endif /* !BCMSDIO */
1624 1624