Skip to content

Commit

Permalink
ath5k: fix section mismatch warning
Browse files Browse the repository at this point in the history
Signed-off-by: John W. Linville <linville@tuxdriver.com>
  • Loading branch information
John W. Linville committed Feb 1, 2008
1 parent 3eadf5f commit 04a9e45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/net/wireless/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static int ath5k_pci_resume(struct pci_dev *pdev);
#define ath5k_pci_resume NULL
#endif /* CONFIG_PM */

static struct pci_driver ath5k_pci_drv_id = {
static struct pci_driver ath5k_pci_driver = {
.name = "ath5k_pci",
.id_table = ath5k_pci_id_table,
.probe = ath5k_pci_probe,
Expand Down Expand Up @@ -329,7 +329,7 @@ init_ath5k_pci(void)

ath5k_debug_init();

ret = pci_register_driver(&ath5k_pci_drv_id);
ret = pci_register_driver(&ath5k_pci_driver);
if (ret) {
printk(KERN_ERR "ath5k_pci: can't register pci driver\n");
return ret;
Expand All @@ -341,7 +341,7 @@ init_ath5k_pci(void)
static void __exit
exit_ath5k_pci(void)
{
pci_unregister_driver(&ath5k_pci_drv_id);
pci_unregister_driver(&ath5k_pci_driver);

ath5k_debug_finish();
}
Expand Down

0 comments on commit 04a9e45

Please sign in to comment.