Make pcibios_setup weak so that platform code can overwrite it. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> --- arch/mips/pci/pci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 7533e3f..0987144 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c @@ -330,7 +330,7 @@ EXPORT_SYMBOL(PCIBIOS_MIN_IO); EXPORT_SYMBOL(PCIBIOS_MIN_MEM); #endif -char *pcibios_setup(char *str) +char *__weak pcibios_setup(char *str) { return str; }