summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2023-07-18 15:42:29 -0500
committerGreg Ungerer <gerg@linux-m68k.org>2023-08-21 08:45:36 +1000
commit8ad50582210c2aa6777bf58252ade9af7ea554b5 (patch)
tree6c526aef4633ca90d017db7a97dd3cf7f47d0515
parent706a741595047797872e669b3101429ab8d378ef (diff)
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 <bhelgaas@google.com> Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
-rw-r--r--arch/m68k/kernel/pcibios.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/m68k/kernel/pcibios.c b/arch/m68k/kernel/pcibios.c
index b0e110d3d2e6..9504eb19d73a 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;
-}
-