]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[WATCHDOG] mv64x60_wdt: Check return value of nonseekable_open
authorDale Farnsworth <dale@farnsworth.org>
Tue, 24 Jul 2007 18:13:26 +0000 (11:13 -0700)
committerWim Van Sebroeck <wim@iguana.be>
Tue, 24 Jul 2007 21:16:05 +0000 (21:16 +0000)
Return the value of the nonseekable_open function and not 0.

Signed-off-by: Dale Farnsworth <dale@farnsworth.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/char/watchdog/mv64x60_wdt.c

index 064e18034395fe5cb749b999422a0904dacbdf9e..f1516b4b22a1a1fe161e1cc252aa61bbf2eabde2 100644 (file)
@@ -90,9 +90,7 @@ static int mv64x60_wdt_open(struct inode *inode, struct file *file)
        mv64x60_wdt_service();
        mv64x60_wdt_handler_enable();
 
-       nonseekable_open(inode, file);
-
-       return 0;
+       return nonseekable_open(inode, file);
 }
 
 static int mv64x60_wdt_release(struct inode *inode, struct file *file)