diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-07-17 07:05:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:09 -0400 |
commit | caaff562e0ba44a7991ee8322fa4a6891d939757 (patch) | |
tree | 64be9b44b48c450613e395a7cc2c462f82cfc77a /drivers/rtc/Makefile | |
parent | 5663c14b4f3e22aece38970f9765ceb090efbb8c (diff) |
rtc: add rtc-m41t80 driver
This is a new-style i2c driver for ST M41T80 series RTC chip, derived from
works by Alexander Bigga <ab@mycable.de> who wrote the original
rtc-m41txx.c based on drivers/i2c/chips/m41t00.c driver.
This driver supports M41T8[0-4] and M41ST8[457]. The old m41t00 driver
supports M41T00, M41T81 and M41T85(M41ST85). While the M41T00 chip is now
supported by rtc-ds1307 driver, this driver does not include support for
the chip.
[akpm@linux-foundation.org: remove bogus `static']
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Alexander Bigga <ab@mycable.de>
Acked-by: Mark A. Greer <mgreer@mvista.com>
Cc: David Brownell <david-b@pacbell.net>
Acked-by: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/Makefile')
-rw-r--r-- | drivers/rtc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 5fb1c102f30e..6da5102e0f21 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile | |||
@@ -29,6 +29,7 @@ obj-$(CONFIG_RTC_DRV_PCF8583) += rtc-pcf8583.o | |||
29 | obj-$(CONFIG_RTC_DRV_RS5C372) += rtc-rs5c372.o | 29 | obj-$(CONFIG_RTC_DRV_RS5C372) += rtc-rs5c372.o |
30 | obj-$(CONFIG_RTC_DRV_S3C) += rtc-s3c.o | 30 | obj-$(CONFIG_RTC_DRV_S3C) += rtc-s3c.o |
31 | obj-$(CONFIG_RTC_DRV_RS5C348) += rtc-rs5c348.o | 31 | obj-$(CONFIG_RTC_DRV_RS5C348) += rtc-rs5c348.o |
32 | obj-$(CONFIG_RTC_DRV_M41T80) += rtc-m41t80.o | ||
32 | obj-$(CONFIG_RTC_DRV_M48T86) += rtc-m48t86.o | 33 | obj-$(CONFIG_RTC_DRV_M48T86) += rtc-m48t86.o |
33 | obj-$(CONFIG_RTC_DRV_DS1553) += rtc-ds1553.o | 34 | obj-$(CONFIG_RTC_DRV_DS1553) += rtc-ds1553.o |
34 | obj-$(CONFIG_RTC_DRV_RS5C313) += rtc-rs5c313.o | 35 | obj-$(CONFIG_RTC_DRV_RS5C313) += rtc-rs5c313.o |