]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[WATCHDOG] Mixcom Watchdog - CodingStyle clean-up
authorWim Van Sebroeck <wim@iguana.be>
Mon, 4 Jun 2007 19:13:28 +0000 (19:13 +0000)
committerWim Van Sebroeck <wim@iguana.be>
Mon, 4 Jun 2007 19:19:45 +0000 (19:19 +0000)
Small clean-up in line with CodingStyle guide-lines.

Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/char/watchdog/mixcomwd.c

index 59a3baadc7049d911eed041975fe80229308d7c7..db2ccb864412f6ce24842c4db8bbf87e67560b11 100644 (file)
@@ -229,8 +229,7 @@ static int mixcomwd_ioctl(struct inode *inode, struct file *file,
        return 0;
 }
 
-static const struct file_operations mixcomwd_fops=
-{
+static const struct file_operations mixcomwd_fops = {
        .owner          = THIS_MODULE,
        .llseek         = no_llseek,
        .write          = mixcomwd_write,
@@ -239,8 +238,7 @@ static const struct file_operations mixcomwd_fops=
        .release        = mixcomwd_release,
 };
 
-static struct miscdevice mixcomwd_miscdev=
-{
+static struct miscdevice mixcomwd_miscdev = {
        .minor  = WATCHDOG_MINOR,
        .name   = "watchdog",
        .fops   = &mixcomwd_fops,
@@ -292,7 +290,8 @@ static int __init mixcomwd_init(void)
                goto error_misc_register_watchdog;
        }
 
-       printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",VERSION,watchdog_port);
+       printk(KERN_INFO "MixCOM watchdog driver v%s, watchdog port at 0x%3x\n",
+               VERSION, watchdog_port);
 
        return 0;