Commit 1f897a81 authored by Mika Westerberg's avatar Mika Westerberg Committed by Wim Van Sebroeck

watchdog: ts72xx_wdt: Kill superfluous variable in remove

There is no need to store the return value of misc_deregister() in a
variable. Instead we can just return the value directly.
Signed-off-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 62ce2543
...@@ -428,11 +428,7 @@ static int ts72xx_wdt_probe(struct platform_device *pdev) ...@@ -428,11 +428,7 @@ static int ts72xx_wdt_probe(struct platform_device *pdev)
static int ts72xx_wdt_remove(struct platform_device *pdev) static int ts72xx_wdt_remove(struct platform_device *pdev)
{ {
int error; return misc_deregister(&ts72xx_wdt_miscdev);
error = misc_deregister(&ts72xx_wdt_miscdev);
return error;
} }
static struct platform_driver ts72xx_wdt_driver = { static struct platform_driver ts72xx_wdt_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment