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

zorro: Move zorro_bus_type to bus-private header file

zorro_bus_type was never used outside the Zorro bus code. Hence move it
from the public to the bus-private header file.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/r/20200112164949.20196-6-geert@linux-m68k.org

+7 -7
+7
drivers/zorro/zorro.h
··· 1 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 2 3 + /* 4 + * Zorro bus 5 + */ 6 + 7 + extern struct bus_type zorro_bus_type; 8 + 9 + 3 10 #ifdef CONFIG_ZORRO_NAMES 4 11 extern void zorro_name_device(struct zorro_dev *z); 5 12 #else
-7
include/linux/zorro.h
··· 41 41 42 42 43 43 /* 44 - * Zorro bus 45 - */ 46 - 47 - extern struct bus_type zorro_bus_type; 48 - 49 - 50 - /* 51 44 * Zorro device drivers 52 45 */ 53 46