diff options
author | Alessandro Zummo <a.zummo@towertech.it> | 2006-03-27 04:16:42 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-27 11:44:51 -0500 |
commit | 1fec7c66ba98fc3a04e15fd14fad6b404e56fc94 (patch) | |
tree | 80959d3ae6fda4507d9a37886e1c25974ef2e92a /drivers/rtc/Makefile | |
parent | e824290e5dcfaf2120da587b16d10dfdff8d5d3e (diff) |
[PATCH] RTC subsystem: X1205 driver
A port of the existing x1205 driver under the new RTC subsystem.
It is actually under test within the NSLU2 project
(http://www.nslu2-linux.org) and it is working quite well.
It is the first driver under this new subsystem and should be used as a guide
to port other drivers.
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
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 38a9212a7f3b..eaf89b22db7a 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile | |||
@@ -10,3 +10,6 @@ rtc-core-y := class.o interface.o | |||
10 | obj-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o | 10 | obj-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o |
11 | obj-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o | 11 | obj-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o |
12 | obj-$(CONFIG_RTC_INTF_DEV) += rtc-dev.o | 12 | obj-$(CONFIG_RTC_INTF_DEV) += rtc-dev.o |
13 | |||
14 | obj-$(CONFIG_RTC_DRV_X1205) += rtc-x1205.o | ||
15 | |||