#include <linux/bitops.h>
#include <linux/errno.h>
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/miscdevice.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/reboot.h>
#include <linux/types.h>
#include <linux/uaccess.h>
#include <linux/watchdog.h>
#include <linux/timer.h>
#include <linux/jiffies.h>
#include <linux/ssb/ssb_embedded.h>
#include <asm/mach-bcm47xx/bcm47xx.h>
Go to the source code of this file.
| #define DRV_NAME "bcm47xx_wdt" |
| #define pr_fmt |
( |
|
fmt | ) |
KBUILD_MODNAME ": " fmt |
| #define WDT_DEFAULT_TIME 30 /* seconds */ |
| #define WDT_MAX_TIME 255 /* seconds */ |
| MODULE_AUTHOR |
( |
"Aleksandar Radovanovic" |
| ) |
|
| MODULE_DESCRIPTION |
( |
"Watchdog driver for Broadcom BCM47xx" |
| ) |
|
| module_exit |
( |
bcm47xx_wdt_exit |
| ) |
|
| module_init |
( |
bcm47xx_wdt_init |
| ) |
|
| module_param |
( |
wdt_time |
, |
|
|
int |
, |
|
|
0 |
|
|
) |
| |