summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMyron Stowe2012-06-26 05:32:32 +0200
committerBjorn Helgaas2012-07-05 23:09:14 +0200
commit15fa325bebbe11184a051ed64965164fca8c1df2 (patch)
tree239299027313d5a4583e162f4b8f563602eb6c52
parentunicore32/PCI: adjust section annotations for pcibios_setup() (diff)
downloadkernel-qcow2-linux-15fa325bebbe11184a051ed64965164fca8c1df2.tar.gz
kernel-qcow2-linux-15fa325bebbe11184a051ed64965164fca8c1df2.tar.xz
kernel-qcow2-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>
-rw-r--r--arch/x86/pci/common.c2
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;