diff options
author | Myron Stowe <myron.stowe@redhat.com> | 2012-06-25 21:32:32 -0600 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-07-05 15:09:14 -0600 |
commit | 15fa325bebbe11184a051ed64965164fca8c1df2 (patch) | |
tree | 239299027313d5a4583e162f4b8f563602eb6c52 /arch/x86/pci/common.c | |
parent | 5d9a19e834815c5d224662d51e4634d14fe0ba54 (diff) | |
download | blackbird-obmc-linux-15fa325bebbe11184a051ed64965164fca8c1df2.tar.gz blackbird-obmc-linux-15fa325bebbe11184a051ed64965164fca8c1df2.zip |
x86/PCI: adjust section annotations for pcibios_setup()
Make pcibios_setup() consistently use the "__init" section annotation.
Signed-off-by: Myron Stowe <myron.stowe@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/pci/common.c')
-rw-r--r-- | arch/x86/pci/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index 0ad990a20d4a..720e973fc34a 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c @@ -494,7 +494,7 @@ int __init pcibios_init(void) return 0; } -char * __devinit pcibios_setup(char *str) +char * __init pcibios_setup(char *str) { if (!strcmp(str, "off")) { pci_probe = 0; |