mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
2cf16adac9
These drivers are not used and have not been converted to driver model. Drop them and references to the non-existent CONFIG options they use. Signed-off-by: Simon Glass <sjg@chromium.org>
40 lines
1.4 KiB
Makefile
40 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2001-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)DM_RTC) += rtc-uclass.o
|
|
|
|
obj-$(CONFIG_RTC_ARMADA38X) += armada38x.o
|
|
obj-$(CONFIG_RTC_DAVINCI) += davinci.o
|
|
obj-$(CONFIG_RTC_DS1307) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1338) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1337) += ds1337.o
|
|
obj-$(CONFIG_RTC_DS1374) += ds1374.o
|
|
obj-$(CONFIG_RTC_DS3231) += ds3231.o
|
|
obj-$(CONFIG_RTC_DS3232) += ds3232.o
|
|
obj-$(CONFIG_RTC_EMULATION) += emul_rtc.o
|
|
obj-$(CONFIG_RTC_HT1380) += ht1380.o
|
|
obj-$(CONFIG_SANDBOX) += i2c_rtc_emul.o
|
|
obj-$(CONFIG_RTC_ISL1208) += isl1208.o
|
|
obj-$(CONFIG_RTC_M41T62) += m41t62.o
|
|
obj-$(CONFIG_RTC_MC13XXX) += mc13xxx-rtc.o
|
|
obj-$(CONFIG_RTC_MC146818) += mc146818.o
|
|
obj-$(CONFIG_MCFRTC) += mcfrtc.o
|
|
obj-$(CONFIG_RTC_MV) += mvrtc.o
|
|
obj-$(CONFIG_RTC_MXS) += mxsrtc.o
|
|
obj-$(CONFIG_RTC_PCF8563) += pcf8563.o
|
|
obj-$(CONFIG_RTC_PCF2127) += pcf2127.o
|
|
obj-$(CONFIG_RTC_PL031) += pl031.o
|
|
obj-$(CONFIG_RTC_PT7C4338) += pt7c4338.o
|
|
obj-$(CONFIG_RTC_RV3028) += rv3028.o
|
|
obj-$(CONFIG_RTC_RV3029) += rv3029.o
|
|
obj-$(CONFIG_RTC_RV8803) += rv8803.o
|
|
obj-$(CONFIG_RTC_RX8025) += rx8025.o
|
|
obj-$(CONFIG_RTC_RX8010SJ) += rx8010sj.o
|
|
obj-$(CONFIG_RTC_S35392A) += s35392a.o
|
|
obj-$(CONFIG_RTC_STM32) += stm32_rtc.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox_rtc.o
|
|
obj-$(CONFIG_RTC_ABX80X) += abx80x.o
|
|
obj-$(CONFIG_RTC_ZYNQMP) += zynqmp_rtc.o
|