Message ID | 1353530100-728-6-git-send-email-wfp5p@virginia.edu (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
> Remove conditional code based on CONFIG_HOTPLUG being false. It's > always on now in preparation of it going away as an option. > > Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> > Cc: Guan Xuetao <gxt@mprc.pku.edu.cn> > Cc: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Guan Xuetao <gxt@mprc.pku.edu.cn> > --- > arch/unicore32/kernel/pci.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/arch/unicore32/kernel/pci.c b/arch/unicore32/kernel/pci.c > index b0056f6..7c43592 100644 > --- a/arch/unicore32/kernel/pci.c > +++ b/arch/unicore32/kernel/pci.c > @@ -250,9 +250,7 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) > printk(KERN_INFO "PCI: bus%d: Fast back to back transfers %sabled\n", > bus->number, (features & PCI_COMMAND_FAST_BACK) ? "en" : "dis"); > } > -#ifdef CONFIG_HOTPLUG > EXPORT_SYMBOL(pcibios_fixup_bus); > -#endif > > static int __init pci_common_init(void) > { > -- > 1.8.0 > -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/unicore32/kernel/pci.c b/arch/unicore32/kernel/pci.c index b0056f6..7c43592 100644 --- a/arch/unicore32/kernel/pci.c +++ b/arch/unicore32/kernel/pci.c @@ -250,9 +250,7 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) printk(KERN_INFO "PCI: bus%d: Fast back to back transfers %sabled\n", bus->number, (features & PCI_COMMAND_FAST_BACK) ? "en" : "dis"); } -#ifdef CONFIG_HOTPLUG EXPORT_SYMBOL(pcibios_fixup_bus); -#endif static int __init pci_common_init(void) {
Remove conditional code based on CONFIG_HOTPLUG being false. It's always on now in preparation of it going away as an option. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Guan Xuetao <gxt@mprc.pku.edu.cn> Cc: Bjorn Helgaas <bhelgaas@google.com> --- arch/unicore32/kernel/pci.c | 2 -- 1 file changed, 2 deletions(-)