Commit 7b770a6a authored by Chris Metcalf's avatar Chris Metcalf

tile: mark pcibios_init() as __init

It was bombed away because it was previously marked as __devinit,
but it should be an __init function.
Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent 9a55fed4
...@@ -386,7 +386,7 @@ void pcibios_set_master(struct pci_dev *dev) ...@@ -386,7 +386,7 @@ void pcibios_set_master(struct pci_dev *dev)
} }
/* Process any "pci=" kernel boot arguments. */ /* Process any "pci=" kernel boot arguments. */
char * __init pcibios_setup(char *str) char *__init pcibios_setup(char *str)
{ {
if (!strcmp(str, "off")) { if (!strcmp(str, "off")) {
pci_probe = 0; pci_probe = 0;
......
...@@ -1060,7 +1060,7 @@ void pcibios_fixup_bus(struct pci_bus *bus) ...@@ -1060,7 +1060,7 @@ void pcibios_fixup_bus(struct pci_bus *bus)
} }
/* Process any "pci=" kernel boot arguments. */ /* Process any "pci=" kernel boot arguments. */
char *pcibios_setup(char *str) char *__init pcibios_setup(char *str)
{ {
if (!strcmp(str, "off")) { if (!strcmp(str, "off")) {
pci_probe = 0; pci_probe = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment