forked from Minki/linux
3a5e854e09
Move the Nomadik GPIO driver to plat-nomadik so that it can also be used on the Ux500 platform. The mach-nomadik include/mach/gpio.h is replaced by one that includes the one now in plat-nomadik, so that code doesn't need to include the one in plat specifically, and can instead use <linux/gpio.h> as usual. Acked-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
20 lines
483 B
Makefile
20 lines
483 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
# Note! Dependencies are done automagically by 'make dep', which also
|
|
# removes any old dependencies. DON'T put your own dependencies here
|
|
# unless it's something special (ie not a .c file).
|
|
|
|
# Object file lists.
|
|
|
|
obj-y += clock.o
|
|
|
|
# Cpu revision
|
|
obj-$(CONFIG_NOMADIK_8815) += cpu-8815.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_MACH_NOMADIK_8815NHK) += board-nhk8815.o
|
|
|
|
# Nomadik extra devices
|
|
obj-$(CONFIG_I2C_BITBANG_8815NHK) += i2c-8815nhk.o
|