#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/miscdevice.h>
#include <linux/watchdog.h>
#include <linux/notifier.h>
#include <linux/reboot.h>
#include <linux/init.h>
#include <linux/uaccess.h>
#include <asm/sgi/mc.h>
Go to the source code of this file.
| #define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
| #define WATCHDOG_TIMEOUT 30 /* 30 sec default timeout */ |
| MODULE_DESCRIPTION |
( |
"Hardware Watchdog Device for SGI IP22" |
| ) |
|
| module_exit |
( |
watchdog_exit |
| ) |
|
| module_init |
( |
watchdog_init |
| ) |
|
| module_param |
( |
nowayout |
, |
|
|
bool |
, |
|
|
0 |
|
|
) |
| |