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>
This commit is contained in:
Jason Cooper
2010-09-14 09:45:51 -04:00
committed by Greg Kroah-Hartman
parent 92dfc7d18a
commit 5fee254098
2 changed files with 9 additions and 9 deletions

View File

@@ -1611,14 +1611,14 @@ static void __devexit wl_remove(struct pci_dev *pdev)
}
static struct pci_driver wl_pci_driver = {
name: "brcm80211",
probe: wl_pci_probe,
.name = "brcm80211",
.probe = wl_pci_probe,
#ifdef LINUXSTA_PS
suspend: wl_suspend,
resume: wl_resume,
.suspend = wl_suspend,
.resume = wl_resume,
#endif /* LINUXSTA_PS */
remove: __devexit_p(wl_remove),
id_table: wl_id_table,
.remove = __devexit_p(wl_remove),
.id_table = wl_id_table,
};
#endif /* !BCMSDIO */