Skip to content

Commit

Permalink
pcie: fix section mismatch warning
Browse files Browse the repository at this point in the history
Fix following section mismatch warning (when compiled with CONFIG_HOTPLUG=n):
WARNING: drivers/pci/built-in.o - Section mismatch: reference to .init.text:pcie_portdrv_probe from .data between 'pcie_portdrv' (at offset 0xe40) and 'pcie_portdrv_err_handler'

This warning was fixed by renaming pcie_portdrv to pcie_portdriver so we pass
the whitelist.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sam Ravnborg authored and Greg Kroah-Hartman committed Mar 9, 2007
1 parent 7f375f3 commit 3603a6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/pci/pcie/portdrv_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ static struct pci_error_handlers pcie_portdrv_err_handler = {
.resume = pcie_portdrv_err_resume,
};

static struct pci_driver pcie_portdrv = {
static struct pci_driver pcie_portdriver = {
.name = (char *)device_name,
.id_table = &port_pci_ids[0],

Expand All @@ -298,7 +298,7 @@ static int __init pcie_portdrv_init(void)
printk(KERN_WARNING "PCIE: bus_register error: %d\n", retval);
goto out;
}
retval = pci_register_driver(&pcie_portdrv);
retval = pci_register_driver(&pcie_portdriver);
if (retval)
pcie_port_bus_unregister();
out:
Expand All @@ -307,7 +307,7 @@ static int __init pcie_portdrv_init(void)

static void __exit pcie_portdrv_exit(void)
{
pci_unregister_driver(&pcie_portdrv);
pci_unregister_driver(&pcie_portdriver);
pcie_port_bus_unregister();
}

Expand Down

0 comments on commit 3603a6a

Please sign in to comment.