projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
697b41e
)
watchdog: fix compiler error for missing parenthesis
author
Jaehoon Chung
<jh80.chung@samsung.com>
Fri, 16 Mar 2012 06:27:21 +0000
(15:27 +0900)
committer
Wim Van Sebroeck
<wim@iguana.be>
Tue, 27 Mar 2012 18:09:13 +0000
(20:09 +0200)
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>
drivers/watchdog/s3c2410_wdt.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/watchdog/s3c2410_wdt.c
b/drivers/watchdog/s3c2410_wdt.c
index 46c251d1893dd239bfb416bd5ee5e63aa3b96a70..04e5a6de47d72743b7010758f1c78230d416f221 100644
(file)
--- 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);
}