diff options
author | Myron Stowe <myron.stowe@redhat.com> | 2012-06-25 21:32:25 -0600 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2012-07-05 15:09:14 -0600 |
commit | 5d9a19e834815c5d224662d51e4634d14fe0ba54 (patch) | |
tree | f067c87948dd765348535648d4b0b3f5dfc63f1a /arch/unicore32/kernel | |
parent | 7477dc291b5618da02e2aee388e3a4815c90906f (diff) | |
download | talos-op-linux-5d9a19e834815c5d224662d51e4634d14fe0ba54.tar.gz talos-op-linux-5d9a19e834815c5d224662d51e4634d14fe0ba54.zip |
unicore32/PCI: adjust section annotations for pcibios_setup()
Make pcibios_setup() consistently use the "__init" section annotation.
Acked-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
Signed-off-by: Myron Stowe <myron.stowe@redhat.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/unicore32/kernel')
-rw-r--r-- | arch/unicore32/kernel/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/unicore32/kernel/pci.c b/arch/unicore32/kernel/pci.c index 2fc2b1ba825e..46cb6c9de6c9 100644 --- a/arch/unicore32/kernel/pci.c +++ b/arch/unicore32/kernel/pci.c @@ -296,7 +296,7 @@ static int __init pci_common_init(void) } subsys_initcall(pci_common_init); -char * __devinit pcibios_setup(char *str) +char * __init pcibios_setup(char *str) { if (!strcmp(str, "debug")) { debug_pci = 1; |