diff mbox series

[U-Boot] rtc: mc146818: Correct alarm message for day alarm

Message ID 1508253573-5454-1-git-send-email-bmeng.cn@gmail.com
State Accepted
Commit 6087be2ba60af08b586237337b2a3ed7fd4f2d21
Delegated to: Tom Rini
Headers show
Series [U-Boot] rtc: mc146818: Correct alarm message for day alarm | expand

Commit Message

Bin Meng Oct. 17, 2017, 3:19 p.m. UTC
RTC_CONFIG_D register contains the day within the month to generate
an alarm, not the month. This corrects the printf to indicate it.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 drivers/rtc/mc146818.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Bin Meng Oct. 24, 2017, 7:51 a.m. UTC | #1
Hi Tom,

On Tue, Oct 17, 2017 at 11:19 PM, Bin Meng <bmeng.cn@gmail.com> wrote:
> RTC_CONFIG_D register contains the day within the month to generate
> an alarm, not the month. This corrects the printf to indicate it.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  drivers/rtc/mc146818.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>

Will you take this for v2017.11?

Regards,
Bin
Tom Rini Oct. 24, 2017, 6:15 p.m. UTC | #2
On Tue, Oct 17, 2017 at 08:19:33AM -0700, Bin Meng wrote:

> RTC_CONFIG_D register contains the day within the month to generate
> an alarm, not the month. This corrects the printf to indicate it.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/drivers/rtc/mc146818.c b/drivers/rtc/mc146818.c
index 4df9eda..21705c8 100644
--- a/drivers/rtc/mc146818.c
+++ b/drivers/rtc/mc146818.c
@@ -100,7 +100,7 @@  static int mc146818_get(struct rtc_time *tmp)
 #ifdef RTC_DEBUG
 	printf("Get RTC year: %02x mon/cent: %02x mday: %02x wday: %02x hr: %02x min: %02x sec: %02x\n",
 	       year, mon, mday, wday, hour, min, sec);
-	printf("Alarms: month: %02x hour: %02x min: %02x sec: %02x\n",
+	printf("Alarms: mday: %02x hour: %02x min: %02x sec: %02x\n",
 	       mc146818_read8(RTC_CONFIG_D) & 0x3f,
 	       mc146818_read8(RTC_HOURS_ALARM),
 	       mc146818_read8(RTC_MINUTES_ALARM),