Commit 7b770a6a0a8504327224ad891d6862893456290d

Authored by Chris Metcalf
1 parent 9a55fed473

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: Chris Metcalf <cmetcalf@tilera.com>

Showing 2 changed files with 2 additions and 2 deletions Side-by-side Diff

arch/tile/kernel/pci.c
... ... @@ -386,7 +386,7 @@
386 386 }
387 387  
388 388 /* Process any "pci=" kernel boot arguments. */
389   -char * __init pcibios_setup(char *str)
  389 +char *__init pcibios_setup(char *str)
390 390 {
391 391 if (!strcmp(str, "off")) {
392 392 pci_probe = 0;
arch/tile/kernel/pci_gx.c
... ... @@ -1060,7 +1060,7 @@
1060 1060 }
1061 1061  
1062 1062 /* Process any "pci=" kernel boot arguments. */
1063   -char *pcibios_setup(char *str)
  1063 +char *__init pcibios_setup(char *str)
1064 1064 {
1065 1065 if (!strcmp(str, "off")) {
1066 1066 pci_probe = 0;