diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-12-31 11:36:16 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-12-31 11:36:16 +0100 |
commit | 36e14f5fdfdf7cec8887b7ff69cd9bb5051ecf62 (patch) | |
tree | 5f014b344dddf644505b582dfa90c013218261c5 /drivers/rtc/Makefile | |
parent | bba3d2daa8a9bc888902275401f15ef48fcdd378 (diff) | |
download | linux-36e14f5fdfdf7cec8887b7ff69cd9bb5051ecf62.tar.gz linux-36e14f5fdfdf7cec8887b7ff69cd9bb5051ecf62.tar.bz2 linux-36e14f5fdfdf7cec8887b7ff69cd9bb5051ecf62.zip |
rtc: rename core files
Rename core files so there is a clearer separation between the RTC core and
the RTC drivers.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/Makefile')
-rw-r--r-- | drivers/rtc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index f97c05ef99db..df022d820bee 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -5,7 +5,7 @@ ccflags-$(CONFIG_RTC_DEBUG) := -DDEBUG -obj-$(CONFIG_RTC_LIB) += rtc-lib.o +obj-$(CONFIG_RTC_LIB) += lib.o obj-$(CONFIG_RTC_HCTOSYS) += hctosys.o obj-$(CONFIG_RTC_SYSTOHC) += systohc.o obj-$(CONFIG_RTC_CLASS) += rtc-core.o @@ -17,9 +17,9 @@ rtc-core-y += rtc-efi-platform.o endif rtc-core-$(CONFIG_RTC_NVMEM) += nvmem.o -rtc-core-$(CONFIG_RTC_INTF_DEV) += rtc-dev.o -rtc-core-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o -rtc-core-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o +rtc-core-$(CONFIG_RTC_INTF_DEV) += dev.o +rtc-core-$(CONFIG_RTC_INTF_PROC) += proc.o +rtc-core-$(CONFIG_RTC_INTF_SYSFS) += sysfs.o # Keep the list ordered. |