mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-16 20:27:02 +02:00
This subsystem has not been converted to driver model, there is only one driver and only one board that uses it. Drop it and its CONFIG option. Also drop the rtc4543 RTC driver since it uses TWS. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@konsulko.com>
56 lines
1.8 KiB
Makefile
56 lines
1.8 KiB
Makefile
#
|
|
# (C) Copyright 2001-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
#ccflags-y += -DDEBUG
|
|
|
|
obj-$(CONFIG_DM_RTC) += rtc-uclass.o
|
|
|
|
obj-$(CONFIG_RTC_AT91SAM9_RTT) += at91sam9_rtt.o
|
|
obj-y += date.o
|
|
obj-$(CONFIG_RTC_DAVINCI) += davinci.o
|
|
obj-$(CONFIG_RTC_DS1302) += ds1302.o
|
|
obj-$(CONFIG_RTC_DS1306) += ds1306.o
|
|
obj-$(CONFIG_RTC_DS1307) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1338) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1339) += ds1307.o
|
|
obj-$(CONFIG_RTC_DS1337) += ds1337.o
|
|
obj-$(CONFIG_RTC_DS1374) += ds1374.o
|
|
obj-$(CONFIG_RTC_DS1388) += ds1337.o
|
|
obj-$(CONFIG_RTC_DS1556) += ds1556.o
|
|
obj-$(CONFIG_RTC_DS164x) += ds164x.o
|
|
obj-$(CONFIG_RTC_DS174x) += ds174x.o
|
|
obj-$(CONFIG_RTC_DS3231) += ds3231.o
|
|
obj-$(CONFIG_RTC_FTRTC010) += ftrtc010.o
|
|
obj-$(CONFIG_SANDBOX) += i2c_rtc_emul.o
|
|
obj-$(CONFIG_RTC_IMXDI) += imxdi.o
|
|
obj-$(CONFIG_RTC_ISL1208) += isl1208.o
|
|
obj-$(CONFIG_RTC_M41T11) += m41t11.o
|
|
obj-$(CONFIG_RTC_M41T60) += m41t60.o
|
|
obj-$(CONFIG_RTC_M41T62) += m41t62.o
|
|
obj-$(CONFIG_RTC_M41T94) += m41t94.o
|
|
obj-$(CONFIG_RTC_M48T35A) += m48t35ax.o
|
|
obj-$(CONFIG_RTC_MAX6900) += max6900.o
|
|
obj-$(CONFIG_RTC_MC13XXX) += mc13xxx-rtc.o
|
|
obj-$(CONFIG_RTC_MC146818) += mc146818.o
|
|
obj-$(CONFIG_RTC_MCP79411) += ds1307.o
|
|
obj-$(CONFIG_MCFRTC) += mcfrtc.o
|
|
obj-$(CONFIG_RTC_MK48T59) += mk48t59.o
|
|
obj-$(CONFIG_RTC_MPC5200) += mpc5xxx.o
|
|
obj-$(CONFIG_RTC_MPC8xx) += mpc8xx.o
|
|
obj-$(CONFIG_RTC_MV) += mvrtc.o
|
|
obj-$(CONFIG_RTC_MX27) += mx27rtc.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_RS5C372A) += rs5c372.o
|
|
obj-$(CONFIG_RTC_RV3029) += rv3029.o
|
|
obj-$(CONFIG_RTC_RX8025) += rx8025.o
|
|
obj-$(CONFIG_RTC_S3C24X0) += s3c24x0_rtc.o
|
|
obj-$(CONFIG_SANDBOX) += sandbox_rtc.o
|
|
obj-$(CONFIG_RTC_X1205) += x1205.o
|