Style fixes

SVN-Revision: 8761
This commit is contained in:
Matteo Croce 2007-09-12 13:21:02 +00:00
parent 89333ac8f7
commit 339eba5fbd

View file

@ -59,7 +59,7 @@ struct ar7_wdt {
u32 kick_lock; u32 kick_lock;
u32 kick; u32 kick;
u32 change_lock; u32 change_lock;
u32 change ; u32 change;
u32 disable_lock; u32 disable_lock;
u32 disable; u32 disable;
u32 prescale_lock; u32 prescale_lock;
@ -186,13 +186,13 @@ static int ar7_wdt_open(struct inode *inode, struct file *file)
static int ar7_wdt_release(struct inode *inode, struct file *file) static int ar7_wdt_release(struct inode *inode, struct file *file)
{ {
if (!expect_close) { if (!expect_close)
printk(KERN_WARNING DRVNAME printk(KERN_WARNING DRVNAME
": watchdog device closed unexpectedly," ": watchdog device closed unexpectedly,"
"will not disable the watchdog timer\n"); "will not disable the watchdog timer\n");
} else if (!nowayout) { else if (!nowayout)
ar7_wdt_disable_wdt(); ar7_wdt_disable_wdt();
}
up(&open_semaphore); up(&open_semaphore);
return 0; return 0;
@ -280,24 +280,24 @@ static int ar7_wdt_ioctl(struct inode *inode, struct file *file,
} }
static struct file_operations ar7_wdt_fops = { static struct file_operations ar7_wdt_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.write = ar7_wdt_write, .write = ar7_wdt_write,
.ioctl = ar7_wdt_ioctl, .ioctl = ar7_wdt_ioctl,
.open = ar7_wdt_open, .open = ar7_wdt_open,
.release = ar7_wdt_release, .release = ar7_wdt_release,
}; };
static struct miscdevice ar7_wdt_miscdev = { static struct miscdevice ar7_wdt_miscdev = {
.minor = WATCHDOG_MINOR, .minor = WATCHDOG_MINOR,
.name = "watchdog", .name = "watchdog",
.fops = &ar7_wdt_fops, .fops = &ar7_wdt_fops,
}; };
static int __init ar7_wdt_init(void) static int __init ar7_wdt_init(void)
{ {
int rc; int rc;
ar7_wdt_get_regs(); ar7_wdt_get_regs();
if (!request_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt), if (!request_mem_region(ar7_regs_wdt, sizeof(struct ar7_wdt),
LONGNAME)) { LONGNAME)) {