[WATCHDOG] pcwd.c add comments + tabs

add extra comments for the include files
changes spaces by tabs where it is appropriate.

Signed-off-by: Wim Van Sebroeck <wim@iguana.be>

+37 -34
+37 -34
drivers/char/watchdog/pcwd.c
··· 49 49 * More info available at http://www.berkprod.com/ or http://www.pcwatchdog.com/ 50 50 */ 51 51 52 - #include <linux/module.h> 53 - #include <linux/moduleparam.h> 54 - #include <linux/types.h> 55 - #include <linux/timer.h> 56 - #include <linux/jiffies.h> 57 - #include <linux/config.h> 58 - #include <linux/wait.h> 59 - #include <linux/slab.h> 60 - #include <linux/ioport.h> 61 - #include <linux/delay.h> 62 - #include <linux/fs.h> 63 - #include <linux/miscdevice.h> 64 - #include <linux/watchdog.h> 65 - #include <linux/notifier.h> 66 - #include <linux/init.h> 67 - #include <linux/spinlock.h> 68 - #include <linux/reboot.h> 52 + #include <linux/config.h> /* For CONFIG_WATCHDOG_NOWAYOUT/... */ 53 + #include <linux/module.h> /* For module specific items */ 54 + #include <linux/moduleparam.h> /* For new moduleparam's */ 55 + #include <linux/types.h> /* For standard types (like size_t) */ 56 + #include <linux/errno.h> /* For the -ENODEV/... values */ 57 + #include <linux/kernel.h> /* For printk/panic/... */ 58 + #include <linux/delay.h> /* For mdelay function */ 59 + #include <linux/timer.h> /* For timer related operations */ 60 + #include <linux/jiffies.h> /* For jiffies stuff */ 61 + #include <linux/miscdevice.h> /* For MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR) */ 62 + #include <linux/watchdog.h> /* For the watchdog specific items */ 63 + #include <linux/notifier.h> /* For notifier support */ 64 + #include <linux/reboot.h> /* For reboot_notifier stuff */ 65 + #include <linux/init.h> /* For __init/__exit/... */ 66 + #include <linux/fs.h> /* For file operations */ 67 + #include <linux/ioport.h> /* For io-port access */ 68 + #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */ 69 69 #include <linux/sched.h> /* TASK_INTERRUPTIBLE, set_current_state() and friends */ 70 - #include <asm/uaccess.h> 71 - #include <asm/io.h> 70 + #include <linux/slab.h> /* For kmalloc */ 72 71 72 + #include <asm/uaccess.h> /* For copy_to_user/put_user/... */ 73 + #include <asm/io.h> /* For inb/outb/... */ 74 + 75 + /* Module and version information */ 73 76 #define WD_VER "1.16 (06/12/2004)" 74 77 #define PFX "pcwd: " 75 78 ··· 87 84 #define PCWD_REVISION_C 2 88 85 89 86 /* 90 - * These are the defines that describe the control status bits for the 87 + * These are the defines that describe the control status #1 bits for the 91 88 * PC Watchdog card, revision A. 92 89 */ 93 90 #define WD_WDRST 0x01 /* Previously reset state */ ··· 97 94 #define WD_SRLY2 0x80 /* Software external relay triggered */ 98 95 99 96 /* 100 - * These are the defines that describe the control status bits for the 97 + * These are the defines that describe the control status #1 bits for the 101 98 * PC Watchdog card, revision C. 102 99 */ 103 100 #define WD_REVC_WTRP 0x01 /* Watchdog Trip status */ ··· 109 106 #define ISA_COMMAND_TIMEOUT 1000 110 107 111 108 /* Watchdog's internal commands */ 112 - #define CMD_ISA_IDLE 0x00 113 - #define CMD_ISA_VERSION_INTEGER 0x01 114 - #define CMD_ISA_VERSION_TENTH 0x02 115 - #define CMD_ISA_VERSION_HUNDRETH 0x03 116 - #define CMD_ISA_VERSION_MINOR 0x04 117 - #define CMD_ISA_SWITCH_SETTINGS 0x05 118 - #define CMD_ISA_DELAY_TIME_2SECS 0x0A 119 - #define CMD_ISA_DELAY_TIME_4SECS 0x0B 120 - #define CMD_ISA_DELAY_TIME_8SECS 0x0C 109 + #define CMD_ISA_IDLE 0x00 110 + #define CMD_ISA_VERSION_INTEGER 0x01 111 + #define CMD_ISA_VERSION_TENTH 0x02 112 + #define CMD_ISA_VERSION_HUNDRETH 0x03 113 + #define CMD_ISA_VERSION_MINOR 0x04 114 + #define CMD_ISA_SWITCH_SETTINGS 0x05 115 + #define CMD_ISA_DELAY_TIME_2SECS 0x0A 116 + #define CMD_ISA_DELAY_TIME_4SECS 0x0B 117 + #define CMD_ISA_DELAY_TIME_8SECS 0x0C 121 118 122 119 /* 123 120 * We are using an kernel timer to do the pinging of the watchdog ··· 770 767 printk(KERN_INFO PFX "No previous trip detected - Cold boot or reset\n"); 771 768 772 769 /* Check that the heartbeat value is within it's range ; if not reset to the default */ 773 - if (pcwd_set_heartbeat(heartbeat)) { 774 - pcwd_set_heartbeat(WATCHDOG_HEARTBEAT); 775 - printk(KERN_INFO PFX "heartbeat value must be 2<=heartbeat<=7200, using %d\n", 776 - WATCHDOG_HEARTBEAT); 770 + if (pcwd_set_heartbeat(heartbeat)) { 771 + pcwd_set_heartbeat(WATCHDOG_HEARTBEAT); 772 + printk(KERN_INFO PFX "heartbeat value must be 2<=heartbeat<=7200, using %d\n", 773 + WATCHDOG_HEARTBEAT); 777 774 } 778 775 779 776 ret = register_reboot_notifier(&pcwd_notifier);