mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
de0a732915
We rename the S5P specific "CONFIG_PWM" to CONFIG_PWM_S5P and move it to Kconfig. Given the usage of CONFIG_PWM_NX, we have that select this new symbol. Cc: Jaehoon Chung <jh80.chung@samsung.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
15 lines
307 B
Makefile
15 lines
307 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2009 Samsung Electronics
|
|
# Minkyu Kang <mk7.kang@samsung.com>
|
|
|
|
obj-$(CONFIG_PWM_S5P) += pwm.o
|
|
ifdef CONFIG_ARCH_NEXELL
|
|
obj-$(CONFIG_S5P4418_ONEWIRE) += pwm.o
|
|
else
|
|
obj-y += cpu_info.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += timer.o
|
|
obj-y += sromc.o
|
|
endif
|
|
endif
|