From: Alessandro Zummo <alessandro.zummo@towertech.it>
To: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Cc: linux-kernel@vger.kernel.org, akpm@osdl.org
Subject: Re: [PATCH] RTC: more XSTP/VDET support for rtc-rs5c348 driver
Date: Mon, 4 Sep 2006 15:58:47 +0200 [thread overview]
Message-ID: <20060904155847.4b32539b@inspiron> (raw)
In-Reply-To: <20060904.222222.59464886.anemo@mba.ocn.ne.jp>
On Mon, 04 Sep 2006 22:22:22 +0900 (JST)
Atsushi Nemoto <anemo@mba.ocn.ne.jp> wrote:
> If the chip detected "oscillator stop" condition, show an warning
> message. And initialize it with the Epoch time instead of leaving it
> with unknown date/time.
>
> Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
> diff --git a/drivers/rtc/rtc-rs5c348.c b/drivers/rtc/rtc-rs5c348.c
> index 0964d1d..2558906 100644
> --- a/drivers/rtc/rtc-rs5c348.c
> +++ b/drivers/rtc/rtc-rs5c348.c
> @@ -23,7 +23,7 @@ #include <linux/rtc.h>
> #include <linux/workqueue.h>
> #include <linux/spi/spi.h>
>
> -#define DRV_VERSION "0.1"
> +#define DRV_VERSION "0.2"
>
> #define RS5C348_REG_SECS 0
> #define RS5C348_REG_MINS 1
> @@ -175,8 +175,15 @@ static int __devinit rs5c348_probe(struc
> goto kfree_exit;
> if (ret & (RS5C348_BIT_XSTP | RS5C348_BIT_VDET)) {
> u8 buf[2];
> + struct rtc_time tm;
> if (ret & RS5C348_BIT_VDET)
> dev_warn(&spi->dev, "voltage-low detected.\n");
> + if (ret & RS5C348_BIT_XSTP)
> + dev_warn(&spi->dev, "oscillator-stop detected.\n");
> + rtc_time_to_tm(0, &tm); /* 1970/1/1 */
> + ret = rs5c348_rtc_set_time(&spi->dev, &tm);
> + if (ret < 0)
> + goto kfree_exit;
> buf[0] = RS5C348_CMD_W(RS5C348_REG_CTL2);
> buf[1] = 0;
> ret = spi_write_then_read(spi, buf, sizeof(buf), NULL, 0);
--
Best regards,
Alessandro Zummo,
Tower Technologies - Turin, Italy
http://www.towertech.it
prev parent reply other threads:[~2006-09-04 16:03 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-04 13:22 Atsushi Nemoto
2006-09-04 13:58 ` Alessandro Zummo [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060904155847.4b32539b@inspiron \
--to=alessandro.zummo@towertech.it \
--cc=akpm@osdl.org \
--cc=anemo@mba.ocn.ne.jp \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®