mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
db616eb676
Currently the S5PC100 does not define S3C_PA_NAND, leaving the NAND device definitions in arch/arm/plat-s3c/dev-nand.c unbuildable. Add a KConfig entry to select whether this is built. As backwards compatibility, both the S3C24XX and S3C64XX define the new configuration in their main Kconfig files until better support for basing this selection on a per-machine basis can be sorted out. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
45 lines
857 B
Makefile
45 lines
857 B
Makefile
# arch/arm/plat-s3c/Makefile
|
|
#
|
|
# Copyright 2008 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for all Samsung SoCs
|
|
|
|
obj-y += init.o
|
|
obj-y += time.o
|
|
obj-y += clock.o
|
|
obj-y += pwm-clock.o
|
|
obj-y += gpio.o
|
|
obj-y += gpio-config.o
|
|
|
|
# DMA support
|
|
|
|
obj-$(CONFIG_S3C_DMA) += dma.o
|
|
|
|
# PM support
|
|
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_PM) += pm-gpio.o
|
|
obj-$(CONFIG_S3C2410_PM_CHECK) += pm-check.o
|
|
|
|
# PWM support
|
|
|
|
obj-$(CONFIG_HAVE_PWM) += pwm.o
|
|
|
|
# devices
|
|
|
|
obj-$(CONFIG_S3C_DEV_HSMMC) += dev-hsmmc.o
|
|
obj-$(CONFIG_S3C_DEV_HSMMC1) += dev-hsmmc1.o
|
|
obj-y += dev-i2c0.o
|
|
obj-$(CONFIG_S3C_DEV_I2C1) += dev-i2c1.o
|
|
obj-$(CONFIG_S3C_DEV_FB) += dev-fb.o
|
|
obj-$(CONFIG_S3C_DEV_USB_HOST) += dev-usb.o
|
|
obj-$(CONFIG_S3C_DEV_USB_HSOTG) += dev-usb-hsotg.o
|
|
obj-$(CONFIG_S3C_DEV_NAND) += dev-nand.o
|