Fixup coding style issues in the s3c2410_wdt driver. Signed-off-by: Ben Dooks Index: linux-2.6.26-rc5-quilt1/drivers/watchdog/s3c2410_wdt.c =================================================================== --- linux-2.6.26-rc5-quilt1.orig/drivers/watchdog/s3c2410_wdt.c 2008-06-07 23:12:18.000000000 +0100 +++ linux-2.6.26-rc5-quilt1/drivers/watchdog/s3c2410_wdt.c 2008-06-07 23:14:31.000000000 +0100 @@ -199,7 +199,7 @@ static int s3c2410wdt_set_heartbeat(int static int s3c2410wdt_open(struct inode *inode, struct file *file) { - if(down_trylock(&open_lock)) + if (down_trylock(&open_lock)) return -EBUSY; if (nowayout) @@ -237,7 +237,7 @@ static ssize_t s3c2410wdt_write(struct f /* * Refresh the timer. */ - if(len) { + if (len) { if (!nowayout) { size_t i; @@ -256,6 +256,7 @@ static ssize_t s3c2410wdt_write(struct f s3c2410wdt_keepalive(); } + return len; } @@ -356,7 +357,7 @@ static int s3c2410wdt_probe(struct platf return -ENOENT; } - size = (res->end-res->start)+1; + size = (res->end - res->start) + 1; wdt_mem = request_mem_region(res->start, size, pdev->name); if (wdt_mem == NULL) { dev_err(dev, "failed to get memory region\n"); -- Ben (ben@fluff.org, http://www.fluff.org/) 'a smiley only costs 4 bytes' -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/