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

sparc64: Kill isa_bus_type.

I forgot to delete this when I removed the ISA bus layer
from the sparc ports.

Signed-off-by: David S. Miller <davem@davemloft.net>

-6
-1
arch/sparc/include/asm/of_platform_64.h
··· 16 16 /* This is just here during the transition */ 17 17 #include <linux/of_platform.h> 18 18 19 - extern struct bus_type isa_bus_type; 20 19 extern struct bus_type ebus_bus_type; 21 20 extern struct bus_type sbus_bus_type; 22 21
-5
arch/sparc64/kernel/of_device.c
··· 56 56 EXPORT_SYMBOL(of_find_device_by_node); 57 57 58 58 #ifdef CONFIG_PCI 59 - struct bus_type isa_bus_type; 60 - EXPORT_SYMBOL(isa_bus_type); 61 - 62 59 struct bus_type ebus_bus_type; 63 60 EXPORT_SYMBOL(ebus_bus_type); 64 61 #endif ··· 838 841 839 842 err = of_bus_type_init(&of_platform_bus_type, "of"); 840 843 #ifdef CONFIG_PCI 841 - if (!err) 842 - err = of_bus_type_init(&isa_bus_type, "isa"); 843 844 if (!err) 844 845 err = of_bus_type_init(&ebus_bus_type, "ebus"); 845 846 #endif