summaryrefslogtreecommitdiffstats
path: root/drivers/char/watchdog/mv64x60_wdt.c
diff options
context:
space:
mode:
authorDale Farnsworth2007-07-24 20:17:23 +0200
committerWim Van Sebroeck2007-07-24 23:16:18 +0200
commitd37a5c3ddf7f57fdc0632e279eabb1772f89dfc5 (patch)
treef29706cf27ad179bff4c71cb2d49faf9b44cfa32 /drivers/char/watchdog/mv64x60_wdt.c
parent[WATCHDOG] mv64x60_wdt: Add WDIOC_SETOPTIONS ioctl support (diff)
downloadkernel-qcow2-linux-d37a5c3ddf7f57fdc0632e279eabb1772f89dfc5.tar.gz
kernel-qcow2-linux-d37a5c3ddf7f57fdc0632e279eabb1772f89dfc5.tar.xz
kernel-qcow2-linux-d37a5c3ddf7f57fdc0632e279eabb1772f89dfc5.zip
[WATCHDOG] mv64x60_wdt: Add a module parameter to change nowayout setting
Also, use the WATCHDOG_NOWAYOUT macro, rather than #ifdefs, and use __module_get to prevent module unloading if WATCHDOG_NOWAYOUT is set. Signed-off-by: Dale Farnsworth <dale@farnsworth.org> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/char/watchdog/mv64x60_wdt.c')
-rw-r--r--drivers/char/watchdog/mv64x60_wdt.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/drivers/char/watchdog/mv64x60_wdt.c b/drivers/char/watchdog/mv64x60_wdt.c
index 7b4812776382..009b9a2c6efa 100644
--- a/drivers/char/watchdog/mv64x60_wdt.c
+++ b/drivers/char/watchdog/mv64x60_wdt.c
@@ -45,6 +45,10 @@ static void __iomem *mv64x60_wdt_regs;
static int mv64x60_wdt_timeout;
static unsigned int bus_clk;
+static int nowayout = WATCHDOG_NOWAYOUT;
+module_param(nowayout, int, 0);
+MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
+
static void mv64x60_wdt_reg_write(u32 val)
{
/* Allow write only to CTL1 / CTL2 fields, retaining values in
@@ -100,6 +104,9 @@ static int mv64x60_wdt_open(struct inode *inode, struct file *file)
if (test_and_set_bit(MV64x60_WDOG_FLAG_OPENED, &wdt_flags))
return -EBUSY;
+ if (nowayout)
+ __module_get(THIS_MODULE);
+
mv64x60_wdt_service();
mv64x60_wdt_handler_enable();
@@ -110,9 +117,8 @@ static int mv64x60_wdt_release(struct inode *inode, struct file *file)
{
mv64x60_wdt_service();
-#if !defined(CONFIG_WATCHDOG_NOWAYOUT)
- mv64x60_wdt_handler_disable();
-#endif
+ if (!nowayout)
+ mv64x60_wdt_handler_disable();
clear_bit(MV64x60_WDOG_FLAG_OPENED, &wdt_flags);