From: Fabio Estevam Date: Mon, 10 Aug 2015 12:47:45 +0000 (-0300) Subject: rtc: ds1374: Remove unused variable X-Git-Tag: v4.14-rc1~4730^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d78908d9717b627a261b1bfe6feb67181e12752e;p=platform%2Fkernel%2Flinux-rpi.git rtc: ds1374: Remove unused variable Remove unused variable 'res' and fix the following build warning: drivers/rtc/rtc-ds1374.c:667:6: warning: unused variable 'res' [-Wunused-variable] Reported-by: Olof's autobuilder Signed-off-by: Fabio Estevam Signed-off-by: Alexandre Belloni --- 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);