aboutsummaryrefslogtreecommitdiff
path: root/drivers/char/watchdog/omap_wdt.c
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2007-07-20 20:41:37 +0000
committerWim Van Sebroeck <wim@iguana.be>2007-07-23 17:25:52 +0000
commitec9505a7ecadc0ab8f8e3c4c5fa900d57467e391 (patch)
treeb950c33158ff3742d3c2ee33a5752bd23dfa0294 /drivers/char/watchdog/omap_wdt.c
parentf1a08cc9a1a8f1da79ca751469ecff82be110482 (diff)
[WATCHDOG] VFS clean-up
All watchdog device drivers are VFSs (Virtual File Systems). We thus return a nonseekable_open(inode, file) when we open the VFS. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/char/watchdog/omap_wdt.c')
-rw-r--r--drivers/char/watchdog/omap_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/watchdog/omap_wdt.c b/drivers/char/watchdog/omap_wdt.c
index b36fa8de213..3a0e0613424 100644
--- a/drivers/char/watchdog/omap_wdt.c
+++ b/drivers/char/watchdog/omap_wdt.c
@@ -142,7 +142,7 @@ static int omap_wdt_open(struct inode *inode, struct file *file)
omap_wdt_set_timeout();
omap_wdt_enable();
- return 0;
+ return nonseekable_open(inode, file);
}
static int omap_wdt_release(struct inode *inode, struct file *file)