1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-06 16:35:27 +03:00

[brcm63xx] cleanup the watchdog driver a bit

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16395 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-06-09 21:35:51 +00:00
parent 6601107c71
commit 757f523019

View File

@ -74,7 +74,7 @@ static void bcm63xx_timer_tick(unsigned long unused)
bcm63xx_wdt_hw_start();
mod_timer(&bcm63xx_wdt_device.timer, jiffies + HZ);
} else
printk(KERN_CRIT PFX "watchdog will restart system\n");
printk(KERN_CRIT PFX ": watchdog will restart system\n");
}
static void bcm63xx_wdt_pet(void)
@ -190,7 +190,7 @@ static long bcm63xx_wdt_ioctl(struct file *file, unsigned int cmd,
return retval;
case WDIOC_KEEPALIVE:
bcm63xx_wdt_pet();
bcm63xx_wdt_pet();
return 0;
case WDIOC_SETTIMEOUT:
@ -212,14 +212,14 @@ static long bcm63xx_wdt_ioctl(struct file *file, unsigned int cmd,
}
static int bcm63xx_wdt_notify_sys(struct notifier_block *this,
unsigned long code, void *unused)
unsigned long code, void *unused)
{
if (code == SYS_DOWN || code == SYS_HALT)
bcm63xx_wdt_pause();
return NOTIFY_DONE;
}
static struct file_operations bcm63xx_wdt_fops = {
static const struct file_operations bcm63xx_wdt_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.write = bcm63xx_wdt_write,
@ -271,7 +271,7 @@ static int bcm63xx_wdt_probe(struct platform_device *pdev)
if (ret) {
printk(KERN_ERR PFX
"failed to register reboot_notifier\n");
return ret;
return ret;
}
ret = misc_register(&bcm63xx_wdt_miscdev);