浏览代码

hostap: section mismatch warning

Fix section mismatch by changing variable name to match one of the
whitelisted (allowable) names for pointing into init data:

WARNING: vmlinux.o(.data+0xce618): Section mismatch: reference to .init.data:prism2_plx_id_table (between 'prism2_plx_drv_id' and 'dev_info')

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Randy Dunlap 17 年之前
父节点
当前提交
e52742deef
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      drivers/net/wireless/hostap/hostap_plx.c

+ 3 - 3
drivers/net/wireless/hostap/hostap_plx.c

@@ -608,7 +608,7 @@ static void prism2_plx_remove(struct pci_dev *pdev)
 
 
 MODULE_DEVICE_TABLE(pci, prism2_plx_id_table);
 MODULE_DEVICE_TABLE(pci, prism2_plx_id_table);
 
 
-static struct pci_driver prism2_plx_drv_id = {
+static struct pci_driver prism2_plx_driver = {
 	.name		= "hostap_plx",
 	.name		= "hostap_plx",
 	.id_table	= prism2_plx_id_table,
 	.id_table	= prism2_plx_id_table,
 	.probe		= prism2_plx_probe,
 	.probe		= prism2_plx_probe,
@@ -618,13 +618,13 @@ static struct pci_driver prism2_plx_drv_id = {
 
 
 static int __init init_prism2_plx(void)
 static int __init init_prism2_plx(void)
 {
 {
-	return pci_register_driver(&prism2_plx_drv_id);
+	return pci_register_driver(&prism2_plx_driver);
 }
 }
 
 
 
 
 static void __exit exit_prism2_plx(void)
 static void __exit exit_prism2_plx(void)
 {
 {
-	pci_unregister_driver(&prism2_plx_drv_id);
+	pci_unregister_driver(&prism2_plx_driver);
 }
 }