Merge tag 'm68knommu-for-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg...
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 4 Sep 2023 18:34:33 +0000 (11:34 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 4 Sep 2023 18:34:33 +0000 (11:34 -0700)
Pull m68knommu updates from Greg Ungerer:
 "Two changes, one a trivial white space clean up, the other removes the
  unnecessary local pcibios_setup() code"

* tag 'm68knommu-for-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
  m68k: coldfire: dma_timer: ERROR: "foo __init bar" should be "foo __init bar"
  m68k/pci: Drop useless pcibios_setup()

arch/m68k/coldfire/dma_timer.c
arch/m68k/kernel/pcibios.c

index cbb2894..91e6728 100644 (file)
@@ -48,7 +48,7 @@ static struct clocksource clocksource_cf_dt = {
        .flags          = CLOCK_SOURCE_IS_CONTINUOUS,
 };
 
-static int __init  init_cf_dt_clocksource(void)
+static int __init init_cf_dt_clocksource(void)
 {
        /*
         * We setup DMA timer 0 in free run mode. This incrementing counter is
index b0e110d..9504eb1 100644 (file)
@@ -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;
-}
-