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

[ARM] Move AMBA bus code to drivers/amba/

Make the AMBA bus code visible to other architectures.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by

Russell King and committed by
Russell King
de1d815f 123656d4

+3 -1
-1
arch/arm/common/Makefile
··· 3 3 # 4 4 5 5 obj-y += rtctime.o 6 - obj-$(CONFIG_ARM_AMBA) += amba.o 7 6 obj-$(CONFIG_ARM_GIC) += gic.o 8 7 obj-$(CONFIG_ICST525) += icst525.o 9 8 obj-$(CONFIG_ICST307) += icst307.o
arch/arm/common/amba.c drivers/amba/bus.c
+1
drivers/Makefile
··· 13 13 # PnP must come after ACPI since it will eventually need to check if acpi 14 14 # was used and do nothing if so 15 15 obj-$(CONFIG_PNP) += pnp/ 16 + obj-$(CONFIG_ARM_AMBA) += amba/ 16 17 17 18 # char/ comes before serial/ etc so that the VT console is the boot-time 18 19 # default.
+2
drivers/amba/Makefile
··· 1 + obj-y += bus.o 2 +