Skip to content

Commit

Permalink
[WATCHDOG] Mixcom Watchdog - CodingStyle clean-up
Browse files Browse the repository at this point in the history
Small clean-up in line with CodingStyle guide-lines.

Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
  • Loading branch information
Wim Van Sebroeck committed Jun 4, 2007
1 parent 27c7742 commit 10a2930
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions drivers/char/watchdog/mixcomwd.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit 10a2930

Please sign in to comment.