Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'm68knommu-for-v6.6' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu

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()

+1 -7
+1 -1
arch/m68k/coldfire/dma_timer.c
··· 48 48 .flags = CLOCK_SOURCE_IS_CONTINUOUS, 49 49 }; 50 50 51 - static int __init init_cf_dt_clocksource(void) 51 + static int __init init_cf_dt_clocksource(void) 52 52 { 53 53 /* 54 54 * We setup DMA timer 0 in free run mode. This incrementing counter is
-6
arch/m68k/kernel/pcibios.c
··· 92 92 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 32); 93 93 } 94 94 } 95 - 96 - char *pcibios_setup(char *str) 97 - { 98 - return str; 99 - } 100 -