Commit 6b1a5235 authored by Wolfram Sang's avatar Wolfram Sang Committed by Linus Torvalds

drivers/rtc/rtc-m41t80.c: add support for MicroCrystal rv4162

Signed-off-by: default avatarWolfram Sang <wsa@sang-engineering.com>
Cc: Jingoo Han <jg1.han@samsung.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 85d77047
...@@ -386,12 +386,12 @@ config RTC_DRV_PCF8583 ...@@ -386,12 +386,12 @@ config RTC_DRV_PCF8583
will be called rtc-pcf8583. will be called rtc-pcf8583.
config RTC_DRV_M41T80 config RTC_DRV_M41T80
tristate "ST M41T62/65/M41T80/81/82/83/84/85/87" tristate "ST M41T62/65/M41T80/81/82/83/84/85/87 and compatible"
help help
If you say Y here you will get support for the ST M41T60 If you say Y here you will get support for the ST M41T60
and M41T80 RTC chips series. Currently, the following chips are and M41T80 RTC chips series. Currently, the following chips are
supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84, supported: M41T62, M41T65, M41T80, M41T81, M41T82, M41T83, M41ST84,
M41ST85, and M41ST87. M41ST85, M41ST87, and MicroCrystal RV4162.
This driver can also be built as a module. If so, the module This driver can also be built as a module. If so, the module
will be called rtc-m41t80. will be called rtc-m41t80.
......
...@@ -78,6 +78,7 @@ static const struct i2c_device_id m41t80_id[] = { ...@@ -78,6 +78,7 @@ static const struct i2c_device_id m41t80_id[] = {
{ "m41st84", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, { "m41st84", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
{ "m41st85", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, { "m41st85", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
{ "m41st87", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ }, { "m41st87", M41T80_FEATURE_HT | M41T80_FEATURE_BL | M41T80_FEATURE_SQ },
{ "rv4162", M41T80_FEATURE_SQ | M41T80_FEATURE_WD | M41T80_FEATURE_SQ_ALT },
{ } { }
}; };
MODULE_DEVICE_TABLE(i2c, m41t80_id); MODULE_DEVICE_TABLE(i2c, m41t80_id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment