mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 18:11:56 +00:00
e328b88094
arch_initcall was been removed from GPIO driver, so this patch re-add support for GPIO into boards as platform_device. Since some drivers (spi, nand, etc.) is not support deferred probe, separate machine init calls is used in board code to make proper loading sequence. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
15 lines
372 B
Makefile
15 lines
372 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Object file lists.
|
|
|
|
obj-y := common.o devices.o
|
|
|
|
obj-$(CONFIG_ARCH_AUTCPU12) += board-autcpu12.o
|
|
obj-$(CONFIG_ARCH_CDB89712) += board-cdb89712.o
|
|
obj-$(CONFIG_ARCH_CLEP7312) += board-clep7312.o
|
|
obj-$(CONFIG_ARCH_EDB7211) += board-edb7211.o
|
|
obj-$(CONFIG_ARCH_FORTUNET) += board-fortunet.o
|
|
obj-$(CONFIG_ARCH_P720T) += board-p720t.o
|