Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 360603
b: refs/heads/master
c: 2dd7b24
h: refs/heads/master
i:
  360601: 7f79c4d
  360599: aae117a
v: v3
  • Loading branch information
Pali Rohár authored and Wim Van Sebroeck committed Mar 1, 2013
1 parent 4ccb47a commit 20dac06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3048253ed957fc6cdc34599178408559aa1e0062
refs/heads/master: 2dd7b24467143c3fd17c6abcaf04fef7976b1528
6 changes: 5 additions & 1 deletion trunk/drivers/watchdog/omap_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@

#include "omap_wdt.h"

static bool nowayout = WATCHDOG_NOWAYOUT;
module_param(nowayout, bool, 0);
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started "
"(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");

static unsigned timer_margin;
module_param(timer_margin, uint, 0);
MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
Expand Down Expand Up @@ -201,7 +206,6 @@ static const struct watchdog_ops omap_wdt_ops = {
static int omap_wdt_probe(struct platform_device *pdev)
{
struct omap_wd_timer_platform_data *pdata = pdev->dev.platform_data;
bool nowayout = WATCHDOG_NOWAYOUT;
struct watchdog_device *omap_wdt;
struct resource *res, *mem;
struct omap_wdt_dev *wdev;
Expand Down

0 comments on commit 20dac06

Please sign in to comment.