Commit 2b81792f authored by Dave Jones's avatar Dave Jones

[WATCHDOG] printk levels for pcwd.c

parent 403d2f4b
...@@ -198,30 +198,30 @@ void pcwd_showprevstate(void) ...@@ -198,30 +198,30 @@ void pcwd_showprevstate(void)
if (revision == PCWD_REVISION_A) { if (revision == PCWD_REVISION_A) {
if (card_status & WD_WDRST) if (card_status & WD_WDRST)
printk("pcwd: Previous reboot was caused by the card.\n"); printk(KERN_INFO "pcwd: Previous reboot was caused by the card.\n");
if (card_status & WD_T110) { if (card_status & WD_T110) {
printk("pcwd: Card senses a CPU Overheat. Panicking!\n"); printk(KERN_EMERG "pcwd: Card senses a CPU Overheat. Panicking!\n");
printk("pcwd: CPU Overheat.\n"); printk(KERN_EMERG "pcwd: CPU Overheat.\n");
machine_power_off(); machine_power_off();
} }
if ((!(card_status & WD_WDRST)) && if ((!(card_status & WD_WDRST)) &&
(!(card_status & WD_T110))) (!(card_status & WD_T110)))
printk("pcwd: Cold boot sense.\n"); printk(KERN_INFO "pcwd: Cold boot sense.\n");
} else { } else {
if (card_status & 0x01) if (card_status & 0x01)
printk("pcwd: Previous reboot was caused by the card.\n"); printk(KERN_INFO "pcwd: Previous reboot was caused by the card.\n");
if (card_status & 0x04) { if (card_status & 0x04) {
printk("pcwd: Card senses a CPU Overheat. Panicking!\n"); printk(KERN_EMERG "pcwd: Card senses a CPU Overheat. Panicking!\n");
printk("pcwd: CPU Overheat.\n"); printk(KERN_EMERG "pcwd: CPU Overheat.\n");
machine_power_off(); machine_power_off();
} }
if ((!(card_status & 0x01)) && if ((!(card_status & 0x01)) &&
(!(card_status & 0x04))) (!(card_status & 0x04)))
printk("pcwd: Cold boot sense.\n"); printk(KERN_INFO "pcwd: Cold boot sense.\n");
} }
} }
...@@ -353,7 +353,7 @@ static int pcwd_ioctl(struct inode *inode, struct file *file, ...@@ -353,7 +353,7 @@ static int pcwd_ioctl(struct inode *inode, struct file *file,
spin_unlock(&io_lock); spin_unlock(&io_lock);
if ((cdat & 0x10) == 0) if ((cdat & 0x10) == 0)
{ {
printk("pcwd: Could not disable card.\n"); printk(KERN_INFO "pcwd: Could not disable card.\n");
return -EIO; return -EIO;
} }
...@@ -368,7 +368,7 @@ static int pcwd_ioctl(struct inode *inode, struct file *file, ...@@ -368,7 +368,7 @@ static int pcwd_ioctl(struct inode *inode, struct file *file,
spin_unlock(&io_lock); spin_unlock(&io_lock);
if (cdat & 0x10) if (cdat & 0x10)
{ {
printk("pcwd: Could not enable card.\n"); printk(KERN_INFO "pcwd: Could not enable card.\n");
return -EIO; return -EIO;
} }
return 0; return 0;
...@@ -595,7 +595,7 @@ static int __init pcwatchdog_init(void) ...@@ -595,7 +595,7 @@ static int __init pcwatchdog_init(void)
revision = PCWD_REVISION_A; revision = PCWD_REVISION_A;
printk("pcwd: v%s Ken Hollis (kenji@bitgate.com)\n", WD_VER); printk(KERN_INFO "pcwd: v%s Ken Hollis (kenji@bitgate.com)\n", WD_VER);
/* Initial variables */ /* Initial variables */
supports_temp = 0; supports_temp = 0;
...@@ -614,7 +614,7 @@ static int __init pcwatchdog_init(void) ...@@ -614,7 +614,7 @@ static int __init pcwatchdog_init(void)
} }
if (!found) { if (!found) {
printk("pcwd: No card detected, or port not available.\n"); printk(KERN_INFO "pcwd: No card detected, or port not available.\n");
return(-EIO); return(-EIO);
} }
#endif #endif
...@@ -627,9 +627,9 @@ static int __init pcwatchdog_init(void) ...@@ -627,9 +627,9 @@ static int __init pcwatchdog_init(void)
revision = get_revision(); revision = get_revision();
if (revision == PCWD_REVISION_A) if (revision == PCWD_REVISION_A)
printk("pcwd: PC Watchdog (REV.A) detected at port 0x%03x\n", current_readport); printk(KERN_INFO "pcwd: PC Watchdog (REV.A) detected at port 0x%03x\n", current_readport);
else if (revision == PCWD_REVISION_C) else if (revision == PCWD_REVISION_C)
printk("pcwd: PC Watchdog (REV.C) detected at port 0x%03x (Firmware version: %s)\n", printk(KERN_INFO "pcwd: PC Watchdog (REV.C) detected at port 0x%03x (Firmware version: %s)\n",
current_readport, get_firmware()); current_readport, get_firmware());
else { else {
/* Should NEVER happen, unless get_revision() fails. */ /* Should NEVER happen, unless get_revision() fails. */
...@@ -638,7 +638,7 @@ static int __init pcwatchdog_init(void) ...@@ -638,7 +638,7 @@ static int __init pcwatchdog_init(void)
} }
if (supports_temp) if (supports_temp)
printk("pcwd: Temperature Option Detected.\n"); printk(KERN_INFO "pcwd: Temperature Option Detected.\n");
debug_off(); debug_off();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment