diff mbox

drivers/rtc/rtc-ds1374.c: fix compilation warning

Message ID 1441183510-5160-1-git-send-email-mike.rapoport@gmail.com
State Not Applicable
Headers show

Commit Message

Mike Rapoport Sept. 2, 2015, 8:45 a.m. UTC
When CONFIG_RTC_DRV_DS1374_WDT is enabled, the compiler warns about unused
variable:

  CC      drivers/rtc/rtc-ds1374.o
drivers/rtc/rtc-ds1374.c: In function ‘ds1374_remove’:
drivers/rtc/rtc-ds1374.c:667:6: warning: unused variable ‘res’ [-Wunused-variable]
  int res;
      ^

Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
---
 drivers/rtc/rtc-ds1374.c | 2 --
 1 file changed, 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c
index 7067232..3b3049c 100644
--- a/drivers/rtc/rtc-ds1374.c
+++ b/drivers/rtc/rtc-ds1374.c
@@ -664,8 +664,6 @@  static int ds1374_remove(struct i2c_client *client)
 {
 	struct ds1374 *ds1374 = i2c_get_clientdata(client);
 #ifdef CONFIG_RTC_DRV_DS1374_WDT
-	int res;
-
 	misc_deregister(&ds1374_miscdev);
 	ds1374_miscdev.parent = NULL;
 	unregister_reboot_notifier(&ds1374_wdt_notifier);