aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorLadislav Michl <ladis@linux-mips.org>2005-05-10 08:08:04 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2005-06-22 00:51:52 -0400
commit912b9c0c52b95696165e84d67fdab2af81a2213e (patch)
treea5f560a549354680bd68991e29a15380306650c4 /drivers
parent86919833dbeac668762ae7056ead2d35d070f622 (diff)
[PATCH] ds1337 driver works also with ds1339 chip
On Wed, May 04, 2005 at 12:07:11PM +0200, Jean Delvare wrote: > Additionally, I would welcome an additional patch documenting the fact > that the ds1337 driver will work fine with the Dallas DS1339 real-time > clock chip. Document the fact that ds1337 driver works also with DS1339 real-time clock chip. Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/chips/Kconfig4
-rw-r--r--drivers/i2c/chips/ds1337.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/chips/Kconfig b/drivers/i2c/chips/Kconfig
index a408c137f281..67be4c988ca6 100644
--- a/drivers/i2c/chips/Kconfig
+++ b/drivers/i2c/chips/Kconfig
@@ -379,12 +379,12 @@ menu "Other I2C Chip support"
379 depends on I2C 379 depends on I2C
380 380
381config SENSORS_DS1337 381config SENSORS_DS1337
382 tristate "Dallas Semiconductor DS1337 Real Time Clock" 382 tristate "Dallas Semiconductor DS1337 and DS1339 Real Time Clock"
383 depends on I2C && EXPERIMENTAL 383 depends on I2C && EXPERIMENTAL
384 select I2C_SENSOR 384 select I2C_SENSOR
385 help 385 help
386 If you say yes here you get support for Dallas Semiconductor 386 If you say yes here you get support for Dallas Semiconductor
387 DS1337 real-time clock chips. 387 DS1337 and DS1339 real-time clock chips.
388 388
389 This driver can also be built as a module. If so, the module 389 This driver can also be built as a module. If so, the module
390 will be called ds1337. 390 will be called ds1337.
diff --git a/drivers/i2c/chips/ds1337.c b/drivers/i2c/chips/ds1337.c
index 8ee818ce0135..2d12cc80f30c 100644
--- a/drivers/i2c/chips/ds1337.c
+++ b/drivers/i2c/chips/ds1337.c
@@ -10,7 +10,7 @@
10 * it under the terms of the GNU General Public License version 2 as 10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation. 11 * published by the Free Software Foundation.
12 * 12 *
13 * Driver for Dallas Semiconductor DS1337 real time clock chip 13 * Driver for Dallas Semiconductor DS1337 and DS1339 real time clock chip
14 */ 14 */
15 15
16#include <linux/config.h> 16#include <linux/config.h>