Commit 9c7c58f9 authored by Randy Dunlap's avatar Randy Dunlap Committed by Steve French

[PATCH] janitor: audit misc_register in wdt977

From: Daniele Bellucci <bellucda@tiscali.it>

Add a check to misc_register() in the wdt977 driver.
parent 9200a62c
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
* 19-Dec-2001 Woody Suwalski: Netwinder fixes, ioctl interface * 19-Dec-2001 Woody Suwalski: Netwinder fixes, ioctl interface
* 06-Jan-2002 Woody Suwalski: For compatibility, convert all timeouts * 06-Jan-2002 Woody Suwalski: For compatibility, convert all timeouts
* from minutes to seconds. * from minutes to seconds.
* 07-Jul-2003 Daniele Bellucci: Audit return code of misc_register in
* nwwatchdog_init.
*/ */
#include <linux/module.h> #include <linux/module.h>
...@@ -343,12 +345,14 @@ static struct miscdevice wdt977_miscdev= ...@@ -343,12 +345,14 @@ static struct miscdevice wdt977_miscdev=
static int __init nwwatchdog_init(void) static int __init nwwatchdog_init(void)
{ {
int retval;
if (!machine_is_netwinder()) if (!machine_is_netwinder())
return -ENODEV; return -ENODEV;
misc_register(&wdt977_miscdev); retval = misc_register(&wdt977_miscdev);
if (!retval)
printk(KERN_INFO "Wdt977 Watchdog sleeping.\n"); printk(KERN_INFO "Wdt977 Watchdog sleeping.\n");
return 0; return retval;
} }
static void __exit nwwatchdog_exit(void) static void __exit nwwatchdog_exit(void)
......
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