mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
28ab44c5be
A common core driver for the S3C24XX ADC block so that the touchscreen, hwmon and any other drivers can share the resource. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
44 lines
977 B
Makefile
44 lines
977 B
Makefile
# arch/arm/plat-s3c24xx/Makefile
|
|
#
|
|
# Copyright 2007 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
|
|
# Core files
|
|
|
|
obj-y += cpu.o
|
|
obj-y += irq.o
|
|
obj-y += devs.o
|
|
obj-y += gpio.o
|
|
obj-y += gpiolib.o
|
|
obj-y += clock.o
|
|
obj-$(CONFIG_S3C24XX_DCLK) += clock-dclk.o
|
|
|
|
# Architecture dependant builds
|
|
|
|
obj-$(CONFIG_CPU_S3C244X) += s3c244x.o
|
|
obj-$(CONFIG_CPU_S3C244X) += s3c244x-irq.o
|
|
obj-$(CONFIG_CPU_S3C244X) += s3c244x-clock.o
|
|
obj-$(CONFIG_PM_SIMTEC) += pm-simtec.o
|
|
obj-$(CONFIG_PM) += pm.o
|
|
obj-$(CONFIG_PM) += sleep.o
|
|
obj-$(CONFIG_HAVE_PWM) += pwm.o
|
|
obj-$(CONFIG_S3C2410_CLOCK) += s3c2410-clock.o
|
|
obj-$(CONFIG_S3C2410_DMA) += dma.o
|
|
obj-$(CONFIG_S3C24XX_ADC) += adc.o
|
|
|
|
# SPI gpio central GPIO functions
|
|
|
|
obj-$(CONFIG_S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13) += spi-bus0-gpe11_12_13.o
|
|
obj-$(CONFIG_S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7) += spi-bus1-gpg5_6_7.o
|
|
|
|
# machine common support
|
|
|
|
obj-$(CONFIG_MACH_SMDK) += common-smdk.o
|