* [rtc-linux] [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix
@ 2015-08-11 14:04 ` Paul Gortmaker
0 siblings, 0 replies; 4+ messages in thread
From: Paul Gortmaker @ 2015-08-11 14:04 UTC (permalink / raw)
To: linux-kernel
Cc: Paul Gortmaker, Adrian Huang, Egbert Eich, Diego Ercolani,
Borislav Petkov, Alexandre Belloni, Alessandro Zummo, rtc-linux
We currently see this warning:
drivers/rtc/rtc-cmos.c:851:7: warning: unused variable 'err'
introduced by commit 7b4a008088a28ea936fffbbfa770d0184468a0ce ("rtc-cmos:
Cancel alarm timer if alarm time is equal to now+1 seconds").
Presumably some WIP version of the commit was doing error checking
but then the variable was not removed prior to submission, and the
pending commits weren't on kernel.org for kbuild bot to spot the new
warning created.
Cc: Adrian Huang <ahuang12@lenovo.com>
Cc: Egbert Eich <eich@suse.de>
Cc: Diego Ercolani <diego.ercolani@gmail.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: rtc-linux@googlegroups.com
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
[Note: patch is against linux-next, so if the rtc tree is rebased,
then the above commit ID reference will be stale. Feel free to
adjust the commit log appropriately, if need be, or even squash
this into the original offending patch, if rebasing back that far.
Also ensuring your tree is on kernel.org will allow kbuild bot
to spot these on your behalf via the zero day builds.]
drivers/rtc/rtc-cmos.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c
index 916bd1f555e5..c2e90c62a59c 100644
--- a/drivers/rtc/rtc-cmos.c
+++ b/drivers/rtc/rtc-cmos.c
@@ -848,7 +848,6 @@ static int cmos_aie_poweroff(struct device *dev)
*/
if (cmos->alarm_expires == t_now + 1) {
struct rtc_wkalrm alarm;
- int err;
/* Cancel the AIE timer by configuring the past time. */
rtc_time64_to_tm(t_now - 1, &alarm.time);
--
2.5.0
--
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix
@ 2015-08-11 14:04 ` Paul Gortmaker
0 siblings, 0 replies; 4+ messages in thread
From: Paul Gortmaker @ 2015-08-11 14:04 UTC (permalink / raw)
To: linux-kernel
Cc: Paul Gortmaker, Adrian Huang, Egbert Eich, Diego Ercolani,
Borislav Petkov, Alexandre Belloni, Alessandro Zummo, rtc-linux
We currently see this warning:
drivers/rtc/rtc-cmos.c:851:7: warning: unused variable 'err'
introduced by commit 7b4a008088a28ea936fffbbfa770d0184468a0ce ("rtc-cmos:
Cancel alarm timer if alarm time is equal to now+1 seconds").
Presumably some WIP version of the commit was doing error checking
but then the variable was not removed prior to submission, and the
pending commits weren't on kernel.org for kbuild bot to spot the new
warning created.
Cc: Adrian Huang <ahuang12@lenovo.com>
Cc: Egbert Eich <eich@suse.de>
Cc: Diego Ercolani <diego.ercolani@gmail.com>
Cc: Borislav Petkov <bp@suse.de>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: rtc-linux@googlegroups.com
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
---
[Note: patch is against linux-next, so if the rtc tree is rebased,
then the above commit ID reference will be stale. Feel free to
adjust the commit log appropriately, if need be, or even squash
this into the original offending patch, if rebasing back that far.
Also ensuring your tree is on kernel.org will allow kbuild bot
to spot these on your behalf via the zero day builds.]
drivers/rtc/rtc-cmos.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/rtc/rtc-cmos.c b/drivers/rtc/rtc-cmos.c
index 916bd1f555e5..c2e90c62a59c 100644
--- a/drivers/rtc/rtc-cmos.c
+++ b/drivers/rtc/rtc-cmos.c
@@ -848,7 +848,6 @@ static int cmos_aie_poweroff(struct device *dev)
*/
if (cmos->alarm_expires == t_now + 1) {
struct rtc_wkalrm alarm;
- int err;
/* Cancel the AIE timer by configuring the past time. */
rtc_time64_to_tm(t_now - 1, &alarm.time);
--
2.5.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [rtc-linux] Re: [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix
2015-08-11 14:04 ` Paul Gortmaker
@ 2015-08-11 14:15 ` Alexandre Belloni
-1 siblings, 0 replies; 4+ messages in thread
From: Alexandre Belloni @ 2015-08-11 14:15 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-kernel, Adrian Huang, Egbert Eich, Diego Ercolani,
Borislav Petkov, Alessandro Zummo, rtc-linux
Hi Paul,
On 11/08/2015 at 10:04:04 -0400, Paul Gortmaker wrote :
> We currently see this warning:
>
> drivers/rtc/rtc-cmos.c:851:7: warning: unused variable 'err'
>
> introduced by commit 7b4a008088a28ea936fffbbfa770d0184468a0ce ("rtc-cmos:
> Cancel alarm timer if alarm time is equal to now+1 seconds").
>
> Presumably some WIP version of the commit was doing error checking
> but then the variable was not removed prior to submission, and the
> pending commits weren't on kernel.org for kbuild bot to spot the new
> warning created.
>
> Cc: Adrian Huang <ahuang12@lenovo.com>
> Cc: Egbert Eich <eich@suse.de>
> Cc: Diego Ercolani <diego.ercolani@gmail.com>
> Cc: Borislav Petkov <bp@suse.de>
> Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Cc: Alessandro Zummo <a.zummo@towertech.it>
> Cc: rtc-linux@googlegroups.com
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>
> [Note: patch is against linux-next, so if the rtc tree is rebased,
> then the above commit ID reference will be stale. Feel free to
> adjust the commit log appropriately, if need be, or even squash
> this into the original offending patch, if rebasing back that far.
> Also ensuring your tree is on kernel.org will allow kbuild bot
> to spot these on your behalf via the zero day builds.]
>
I'm pretty sure my rtc-next branch on kernel.org already carry the fix.
I fixed it on monday: 2015-08-10 07:12:44 (GMT). It just seems that
linux-next has not been updated since then.
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
--
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix
@ 2015-08-11 14:15 ` Alexandre Belloni
0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Belloni @ 2015-08-11 14:15 UTC (permalink / raw)
To: Paul Gortmaker
Cc: linux-kernel, Adrian Huang, Egbert Eich, Diego Ercolani,
Borislav Petkov, Alessandro Zummo, rtc-linux
Hi Paul,
On 11/08/2015 at 10:04:04 -0400, Paul Gortmaker wrote :
> We currently see this warning:
>
> drivers/rtc/rtc-cmos.c:851:7: warning: unused variable 'err'
>
> introduced by commit 7b4a008088a28ea936fffbbfa770d0184468a0ce ("rtc-cmos:
> Cancel alarm timer if alarm time is equal to now+1 seconds").
>
> Presumably some WIP version of the commit was doing error checking
> but then the variable was not removed prior to submission, and the
> pending commits weren't on kernel.org for kbuild bot to spot the new
> warning created.
>
> Cc: Adrian Huang <ahuang12@lenovo.com>
> Cc: Egbert Eich <eich@suse.de>
> Cc: Diego Ercolani <diego.ercolani@gmail.com>
> Cc: Borislav Petkov <bp@suse.de>
> Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> Cc: Alessandro Zummo <a.zummo@towertech.it>
> Cc: rtc-linux@googlegroups.com
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
> ---
>
> [Note: patch is against linux-next, so if the rtc tree is rebased,
> then the above commit ID reference will be stale. Feel free to
> adjust the commit log appropriately, if need be, or even squash
> this into the original offending patch, if rebasing back that far.
> Also ensuring your tree is on kernel.org will allow kbuild bot
> to spot these on your behalf via the zero day builds.]
>
I'm pretty sure my rtc-next branch on kernel.org already carry the fix.
I fixed it on monday: 2015-08-10 07:12:44 (GMT). It just seems that
linux-next has not been updated since then.
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-08-11 14:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-11 14:04 [rtc-linux] [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix Paul Gortmaker
2015-08-11 14:04 ` Paul Gortmaker
2015-08-11 14:15 ` [rtc-linux] " Alexandre Belloni
2015-08-11 14:15 ` Alexandre Belloni
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.