hostap: fix section mismatch warning
Fix section mismatch warning: WARNING: vmlinux.o(.data+0x36fcc): Section mismatch: reference to .init.data:prism2_pci_id_table (between 'prism2_pci_drv_id' and 'prism2_pci_funcs') Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
453a3fb9bd
commit
2493d8e416
1 changed files with 3 additions and 3 deletions
|
@ -444,7 +444,7 @@ static int prism2_pci_resume(struct pci_dev *pdev)
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(pci, prism2_pci_id_table);
|
MODULE_DEVICE_TABLE(pci, prism2_pci_id_table);
|
||||||
|
|
||||||
static struct pci_driver prism2_pci_drv_id = {
|
static struct pci_driver prism2_pci_driver = {
|
||||||
.name = "hostap_pci",
|
.name = "hostap_pci",
|
||||||
.id_table = prism2_pci_id_table,
|
.id_table = prism2_pci_id_table,
|
||||||
.probe = prism2_pci_probe,
|
.probe = prism2_pci_probe,
|
||||||
|
@ -458,13 +458,13 @@ static struct pci_driver prism2_pci_drv_id = {
|
||||||
|
|
||||||
static int __init init_prism2_pci(void)
|
static int __init init_prism2_pci(void)
|
||||||
{
|
{
|
||||||
return pci_register_driver(&prism2_pci_drv_id);
|
return pci_register_driver(&prism2_pci_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void __exit exit_prism2_pci(void)
|
static void __exit exit_prism2_pci(void)
|
||||||
{
|
{
|
||||||
pci_unregister_driver(&prism2_pci_drv_id);
|
pci_unregister_driver(&prism2_pci_driver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue