X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=drivers%2Fpwm%2FMakefile;h=a837c35ed2e3bee56a5e3a1b7754e2c8c0a31a00;hb=ca962d32dfd9b92c932c0279027ce29cae8983f3;hp=c0c4883317378261e0eed47942e8ab2e254d4ef4;hpb=5a1095a830299aef8dd32495e505e92ab1749e89;p=u-boot diff --git a/drivers/pwm/Makefile b/drivers/pwm/Makefile index c0c4883317..a837c35ed2 100644 --- a/drivers/pwm/Makefile +++ b/drivers/pwm/Makefile @@ -1,13 +1,18 @@ +# SPDX-License-Identifier: GPL-2.0+ # # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # (C) Copyright 2001 # Erik Theisen, Wave 7 Optics, etheisen@mindspring.com. -# -# SPDX-License-Identifier: GPL-2.0+ -# #ccflags-y += -DDEBUG -obj-$(CONFIG_PWM_IMX) += pwm-imx.o pwm-imx-util.o +obj-$(CONFIG_DM_PWM) += pwm-uclass.o + +obj-$(CONFIG_PWM_EXYNOS) += exynos_pwm.o +obj-$(CONFIG_PWM_IMX) += pwm-imx.o pwm-imx-util.o +obj-$(CONFIG_PWM_ROCKCHIP) += rk_pwm.o +obj-$(CONFIG_PWM_SANDBOX) += sandbox_pwm.o +obj-$(CONFIG_PWM_TEGRA) += tegra_pwm.o +obj-$(CONFIG_PWM_SUNXI) += sunxi_pwm.o