Style fixes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8761 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Matteo Croce 2007-09-12 13:21:02 +00:00
parent 6c126cc6c9
commit cb6ff629c0
1 changed files with 13 additions and 13 deletions

View File

@ -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)
{
if (!expect_close) {
if (!expect_close)
printk(KERN_WARNING DRVNAME
": watchdog device closed unexpectedly,"
"will not disable the watchdog timer\n");
} else if (!nowayout) {
else if (!nowayout)
ar7_wdt_disable_wdt();
}
up(&open_semaphore);
return 0;