mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
7c93c200f6
Since all the used PWM prescalers and dividers configuration has been moved to appropriate drivers, the pwm-clock infrastructure is now unused and so this patch removes it. Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Tested-by: Heiko Stuebner <heiko@sntech.de> Tested-by: Mark Brown <broonie@linaro.org> Tested-by: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> Acked-by: Arnd Bergmann <arnd@arndb.de>
61 lines
1.3 KiB
Makefile
61 lines
1.3 KiB
Makefile
# arch/arm/plat-samsung/Makefile
|
|
#
|
|
# Copyright 2009 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Objects we always build independent of SoC choice
|
|
|
|
obj-y += init.o cpu.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_CLOCK) += clock.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_CLKSRC) += clock-clksrc.o
|
|
obj-$(CONFIG_S5P_CLOCK) += s5p-clock.o
|
|
|
|
obj-$(CONFIG_S5P_IRQ) += s5p-irq.o
|
|
obj-$(CONFIG_S5P_EXT_INT) += s5p-irq-eint.o
|
|
obj-$(CONFIG_S5P_GPIO_INT) += s5p-irq-gpioint.o
|
|
|
|
# ADC
|
|
|
|
obj-$(CONFIG_S3C_ADC) += adc.o
|
|
|
|
# devices
|
|
|
|
obj-$(CONFIG_SAMSUNG_ATAGS) += platformdata.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_ATAGS) += devs.o
|
|
obj-$(CONFIG_SAMSUNG_ATAGS) += dev-uart.o
|
|
obj-$(CONFIG_S5P_DEV_MFC) += s5p-dev-mfc.o
|
|
obj-$(CONFIG_S5P_DEV_UART) += s5p-dev-uart.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_DEV_BACKLIGHT) += dev-backlight.o
|
|
|
|
obj-$(CONFIG_S3C_SETUP_CAMIF) += setup-camif.o
|
|
obj-$(CONFIG_S5P_SETUP_MIPIPHY) += setup-mipiphy.o
|
|
|
|
# DMA support
|
|
|
|
obj-$(CONFIG_S3C_DMA) += dma.o s3c-dma-ops.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_DMADEV) += dma-ops.o
|
|
|
|
# PM support
|
|
|
|
obj-$(CONFIG_SAMSUNG_PM) += pm.o
|
|
obj-$(CONFIG_SAMSUNG_PM_GPIO) += pm-gpio.o
|
|
obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_WAKEMASK) += wakeup-mask.o
|
|
obj-$(CONFIG_SAMSUNG_WDT_RESET) += watchdog-reset.o
|
|
|
|
obj-$(CONFIG_S5P_PM) += s5p-pm.o
|
|
obj-$(CONFIG_S5P_IRQ_PM) += s5p-irq-pm.o
|
|
obj-$(CONFIG_S5P_SLEEP) += s5p-sleep.o
|