#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/miscdevice.h>
#include <linux/watchdog.h>
#include <linux/fs.h>
#include <linux/ioport.h>
#include <linux/notifier.h>
#include <linux/reboot.h>
#include <linux/init.h>
#include <linux/spinlock.h>
#include <linux/io.h>
#include <linux/uaccess.h>
Go to the source code of this file.
|
| module_param (wdt_io, int, 0) |
|
| MODULE_PARM_DESC (wdt_io,"w83627hf/thf WDT io port (default 0x2E)") |
|
| module_param (timeout, int, 0) |
|
| MODULE_PARM_DESC (timeout,"Watchdog timeout in seconds. 1 <= timeout <= 255, 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 (wdt_init) |
|
| module_exit (wdt_exit) |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_AUTHOR ("Pádraig Brady <P@draigBrady.com>") |
|
| MODULE_DESCRIPTION ("w83627hf/thf WDT driver") |
|
| MODULE_ALIAS_MISCDEV (WATCHDOG_MINOR) |
|
#define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
#define WATCHDOG_NAME "w83627hf/thf/hg/dhg WDT" |
#define WATCHDOG_TIMEOUT 60 /* 60 sec default timeout */ |
#define WDT_EFER (wdt_io+0) /* Extended Function Enable Registers */ |
MODULE_AUTHOR |
( |
"Pádraig Brady <P@draigBrady.com>" |
| ) |
|
MODULE_DESCRIPTION |
( |
"w83627hf/thf WDT driver" |
| ) |
|
module_param |
( |
wdt_io |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |
module_param |
( |
nowayout |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
wdt_io |
, |
|
|
"w83627hf/thf WDT io port (default 0x2E)" |
|
|
) |
| |