diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-07-21 13:16:20 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-10-03 11:41:02 -0700 |
commit | 99904bf394be0c65e12440bca422b18d1198d73f (patch) | |
tree | 752a6a086792ee351f2099d0231abdf9ab60fdcc /drivers/usb/host | |
parent | 6d901cfa36fbf9682aa467cafacb765baa1c10af (diff) | |
download | kernel_samsung_smdk4412-99904bf394be0c65e12440bca422b18d1198d73f.zip kernel_samsung_smdk4412-99904bf394be0c65e12440bca422b18d1198d73f.tar.gz kernel_samsung_smdk4412-99904bf394be0c65e12440bca422b18d1198d73f.tar.bz2 |
usb/host/pci-quirks.c: correct annotation of `ehci_dmi_nohandoff_table'
commit a7e6401e19aa54924ab11ee548afaad0a55ffdc6 upstream.
ehci_bios_handoff() is marked __devinit, `ehci_dmi_nohandoff_table' should be
marked __devinitconst, not __initconst. This fixes the following section
mismatch:
WARNING: vmlinux.o(.devinit.text+0x4f08): Section mismatch in reference from the function ehci_bios_handoff() to the variable .init.rodata:ehci_dmi_nohandoff_table
The function __devinit ehci_bios_handoff() references a variable __initconst ehci_dmi_nohandoff_table.
If ehci_dmi_nohandoff_table is only used by ehci_bios_handoff then annotate ehci_dmi_nohandoff_table with a matching annotation.
Cc: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/pci-quirks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/pci-quirks.c b/drivers/usb/host/pci-quirks.c index f4d1b69..629a968 100644 --- a/drivers/usb/host/pci-quirks.c +++ b/drivers/usb/host/pci-quirks.c @@ -535,7 +535,7 @@ static void __devinit quirk_usb_handoff_ohci(struct pci_dev *pdev) iounmap(base); } -static const struct dmi_system_id __initconst ehci_dmi_nohandoff_table[] = { +static const struct dmi_system_id __devinitconst ehci_dmi_nohandoff_table[] = { { /* Pegatron Lucid (ExoPC) */ .matches = { |