From 8ad50582210c2aa6777bf58252ade9af7ea554b5 Mon Sep 17 00:00:00 2001 From: Bjorn Helgaas Date: Tue, 18 Jul 2023 15:42:29 -0500 Subject: [PATCH] m68k/pci: Drop useless pcibios_setup() The PCI core supplies a weak pcibios_setup() implementation that is identical to the m68k implementation. Remove the m68k version since it is unnecessary. Signed-off-by: Bjorn Helgaas Signed-off-by: Greg Ungerer --- arch/m68k/kernel/pcibios.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/arch/m68k/kernel/pcibios.c b/arch/m68k/kernel/pcibios.c index b0e110d..9504eb1 100644 --- a/arch/m68k/kernel/pcibios.c +++ b/arch/m68k/kernel/pcibios.c @@ -92,9 +92,3 @@ void pcibios_fixup_bus(struct pci_bus *bus) pci_write_config_byte(dev, PCI_LATENCY_TIMER, 32); } } - -char *pcibios_setup(char *str) -{ - return str; -} - -- 2.7.4