#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/miscdevice.h>
#include <linux/watchdog.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/platform_device.h>
#include <linux/ioport.h>
#include <linux/spinlock.h>
#include <linux/uaccess.h>
#include <linux/io.h>
Go to the source code of this file.
|
| module_param (force_id, ushort, 0) |
|
| MODULE_PARM_DESC (force_id,"Override the detected device ID") |
|
| module_param (timeout, int, 0) |
|
| MODULE_PARM_DESC (timeout,"Watchdog timeout in seconds. 1<= timeout <=15300, default="__MODULE_STRING(WATCHDOG_TIMEOUT)".") |
|
| module_param (nowayout, bool, 0) |
|
| MODULE_PARM_DESC (nowayout,"Watchdog cannot be stopped once started (default="__MODULE_STRING(WATCHDOG_NOWAYOUT)")") |
|
| module_init (sch311x_wdt_init) |
|
| module_exit (sch311x_wdt_exit) |
|
| MODULE_AUTHOR ("Wim Van Sebroeck <[email protected]>") |
|
| MODULE_DESCRIPTION ("SMSC SCH311x WatchDog Timer Driver") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_ALIAS_MISCDEV (WATCHDOG_MINOR) |
|
#define DRV_NAME "sch311x_wdt" |
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */ |
#define WDT_TIME_OUT 0x65 |
MODULE_DESCRIPTION |
( |
"SMSC SCH311x WatchDog Timer Driver" |
| ) |
|
module_exit |
( |
sch311x_wdt_exit |
| ) |
|
module_init |
( |
sch311x_wdt_init |
| ) |
|
module_param |
( |
force_id |
, |
|
|
ushort |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
nowayout |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
force_id |
, |
|
|
"Override the detected device ID" |
|
|
) |
| |
unsigned short runtime_reg |