diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2012-03-16 10:27:21 +0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-03-27 22:09:13 +0400 |
commit | ccd4144dd41c32a284a5b040f87aaefed0361a21 (patch) | |
tree | 3b95e5c36dc5cc3bbaeab5f11986b354d5090da0 /drivers/watchdog/s3c2410_wdt.c | |
parent | 697b41e4d4b20b8d8564f5501927b0ed07153990 (diff) | |
download | linux-ccd4144dd41c32a284a5b040f87aaefed0361a21.tar.xz |
watchdog: fix compiler error for missing parenthesis
Joe's patch(watchdog: Use pr_<fmt> and pr_<level>) missed parenthesis in s3c2410_wdt.c.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/s3c2410_wdt.c')
-rw-r--r-- | drivers/watchdog/s3c2410_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/s3c2410_wdt.c b/drivers/watchdog/s3c2410_wdt.c index 46c251d1893d..04e5a6de47d7 100644 --- a/drivers/watchdog/s3c2410_wdt.c +++ b/drivers/watchdog/s3c2410_wdt.c @@ -523,7 +523,7 @@ static struct platform_driver s3c2410wdt_driver = { static int __init watchdog_init(void) { - pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"; + pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"); return platform_driver_register(&s3c2410wdt_driver); } |