public inbox for linux-next@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] watchdog: fix compiler error for missing parenthesis
@ 2012-03-16  6:27 Jaehoon Chung
  2012-03-16  6:35 ` Joe Perches
  2012-03-16  7:03 ` Stephen Rothwell
  0 siblings, 2 replies; 3+ messages in thread
From: Jaehoon Chung @ 2012-03-16  6:27 UTC (permalink / raw)
  To: linux-next; +Cc: sfr, joe, Kyungmin Park

Hi Stephen.

Joe's patch(watchdog: Use pr_<fmt> and pr_<level>) is missed the parenthesis in s3c2410_wdt.c.
(based-on latest linux-next repository)
It's fixed with this patch.

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 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 46c251d..04e5a6d 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);
 }

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-03-16  7:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-16  6:27 [PATCH] watchdog: fix compiler error for missing parenthesis Jaehoon Chung
2012-03-16  6:35 ` Joe Perches
2012-03-16  7:03 ` Stephen Rothwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox