diff options
author | Marc Kleine-Budde <mkl@pengutronix.de> | 2010-10-30 19:28:16 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-30 19:28:16 -0400 |
commit | bdfa3d8fe123a940be121daf374581727b3b6547 (patch) | |
tree | aa25729b7104829f21b94280881b3220905723b7 /drivers/net/can | |
parent | 526de53cf78d325351904eefb9624f933924df75 (diff) |
can: pch_can: fix section mismatch warning by using a whitelisted name
This patch fixes the following section mismatch warning:
WARNING: drivers/net/can/pch_can.o(.data+0x18):
Section mismatch in reference from the variable pch_can_pcidev
to the variable .devinit.rodata:pch_pci_tbl
The variable pch_can_pcidev references
the variable __devinitconst pch_pci_tbl
This is actually a false positive which is fixed by giving the offending
variable a whitelisted name, it's renamed to "pch_can_pci_driver".
This makes sense because the variable is of the type "struct pci_driver".
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can')
-rw-r--r-- | drivers/net/can/pch_can.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c index c63209f4e73c..672718261c68 100644 --- a/drivers/net/can/pch_can.c +++ b/drivers/net/can/pch_can.c | |||
@@ -1437,7 +1437,7 @@ probe_exit_endev: | |||
1437 | return rc; | 1437 | return rc; |
1438 | } | 1438 | } |
1439 | 1439 | ||
1440 | static struct pci_driver pch_can_pcidev = { | 1440 | static struct pci_driver pch_can_pci_driver = { |
1441 | .name = "pch_can", | 1441 | .name = "pch_can", |
1442 | .id_table = pch_pci_tbl, | 1442 | .id_table = pch_pci_tbl, |
1443 | .probe = pch_can_probe, | 1443 | .probe = pch_can_probe, |
@@ -1448,13 +1448,13 @@ static struct pci_driver pch_can_pcidev = { | |||
1448 | 1448 | ||
1449 | static int __init pch_can_pci_init(void) | 1449 | static int __init pch_can_pci_init(void) |
1450 | { | 1450 | { |
1451 | return pci_register_driver(&pch_can_pcidev); | 1451 | return pci_register_driver(&pch_can_pci_driver); |
1452 | } | 1452 | } |
1453 | module_init(pch_can_pci_init); | 1453 | module_init(pch_can_pci_init); |
1454 | 1454 | ||
1455 | static void __exit pch_can_pci_exit(void) | 1455 | static void __exit pch_can_pci_exit(void) |
1456 | { | 1456 | { |
1457 | pci_unregister_driver(&pch_can_pcidev); | 1457 | pci_unregister_driver(&pch_can_pci_driver); |
1458 | } | 1458 | } |
1459 | module_exit(pch_can_pci_exit); | 1459 | module_exit(pch_can_pci_exit); |
1460 | 1460 | ||