···4242module_param(nowayout, bool, 0);4343MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");44444545-static int timeout = WDT_TIMEOUT;4646-module_param(timeout, int, 0);4545+static unsigned int timeout = WDT_TIMEOUT;4646+module_param(timeout, uint, 0);4747MODULE_PARM_DESC(timeout,4848 "Watchdog timeout in seconds. (1<=timeout<=3600, default="4949 __MODULE_STRING(WDT_TIMEOUT) ")");···5555#define EP93XX_WATCHDOG 0x005656#define EP93XX_WDSTATUS 0x0457575858-/* reset the wdt every ~200ms */5858+/* reset the wdt every ~200ms - the heartbeat of the device is 0.250 seconds*/5959#define WDT_INTERVAL (HZ/5)60606161static void ep93xx_wdt_timer_ping(unsigned long data)