diff options
author | Alessandro Zummo | 2006-03-27 11:16:39 +0200 |
---|---|---|
committer | Linus Torvalds | 2006-03-27 18:44:51 +0200 |
commit | c5c3e19225217536d90515c494e55e642a21e4fa (patch) | |
tree | 64e0f52ca0056b3f3167e59dcfcb950d8e1f3249 /drivers/rtc/Makefile | |
parent | [PATCH] RTC subsystem: I2C driver ids (diff) | |
download | kernel-qcow2-linux-c5c3e19225217536d90515c494e55e642a21e4fa.tar.gz kernel-qcow2-linux-c5c3e19225217536d90515c494e55e642a21e4fa.tar.xz kernel-qcow2-linux-c5c3e19225217536d90515c494e55e642a21e4fa.zip |
[PATCH] RTC subsystem: sysfs interface
This patch adds the sysfs interface to the RTC subsystem.
Each RTC client will have his own entry under /sys/classs/rtc/rtcN .
Within this entry some attributes are exported by the subsystem, like date and
time.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/rtc/Makefile')
-rw-r--r-- | drivers/rtc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 7b87f3710dff..c44363355c2b 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -6,3 +6,6 @@ obj-$(CONFIG_RTC_LIB) += rtc-lib.o obj-$(CONFIG_RTC_HCTOSYS) += hctosys.o obj-$(CONFIG_RTC_CLASS) += rtc-core.o rtc-core-y := class.o interface.o + +obj-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o + |