diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2012-03-16 02:27:21 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-03-27 14:09:13 -0400 |
commit | ccd4144dd41c32a284a5b040f87aaefed0361a21 (patch) | |
tree | 3b95e5c36dc5cc3bbaeab5f11986b354d5090da0 /drivers/watchdog | |
parent | 697b41e4d4b20b8d8564f5501927b0ed07153990 (diff) |
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')
-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 = { | |||
523 | 523 | ||
524 | static int __init watchdog_init(void) | 524 | static int __init watchdog_init(void) |
525 | { | 525 | { |
526 | pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"; | 526 | pr_info("S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"); |
527 | 527 | ||
528 | return platform_driver_register(&s3c2410wdt_driver); | 528 | return platform_driver_register(&s3c2410wdt_driver); |
529 | } | 529 | } |