From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965135AbbHKOFX (ORCPT ); Tue, 11 Aug 2015 10:05:23 -0400 Received: from mail1.windriver.com ([147.11.146.13]:41774 "EHLO mail1.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964890AbbHKOFW (ORCPT ); Tue, 11 Aug 2015 10:05:22 -0400 From: Paul Gortmaker To: CC: Paul Gortmaker , Adrian Huang , Egbert Eich , Diego Ercolani , Borislav Petkov , Alexandre Belloni , Alessandro Zummo , Subject: [PATCH] drivers/rtc: fix compile warning introduced by 1s reboot fix Date: Tue, 11 Aug 2015 10:04:04 -0400 Message-ID: <1439301844-22710-1-git-send-email-paul.gortmaker@windriver.com> X-Mailer: git-send-email 2.5.0 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 Cc: Egbert Eich Cc: Diego Ercolani Cc: Borislav Petkov Cc: Alexandre Belloni Cc: Alessandro Zummo Cc: rtc-linux@googlegroups.com Signed-off-by: Paul Gortmaker --- [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