mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
db23c7332b
As per example from the other ARM boards, push the KS8695 GPIO driver down to the GPIO subsystem so it can be consolidated. Cc: zeal <zealcook@gmail.com> Cc: Ben Dooks <ben-linux@fluff.org> Acked-by: Daniel Silverstone <dsilvers@simtec.co.uk> Acked-by: Simtec Linux Team <linux@simtec.co.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
405 B
Makefile
20 lines
405 B
Makefile
# arch/arm/mach-ks8695/Makefile
|
|
#
|
|
# Makefile for KS8695 architecture support
|
|
#
|
|
|
|
obj-y := cpu.o irq.o time.o devices.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# PCI support is optional
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
|
|
# LEDs
|
|
obj-$(CONFIG_LEDS) += leds.o
|
|
|
|
# Board-specific support
|
|
obj-$(CONFIG_MACH_KS8695) += board-micrel.o
|
|
obj-$(CONFIG_MACH_DSM320) += board-dsm320.o
|
|
obj-$(CONFIG_MACH_ACS5K) += board-acs5k.o
|