Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccd4144d authored by Jaehoon Chung's avatar Jaehoon Chung Committed by Wim Van Sebroeck
Browse files

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: default avatarJaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 697b41e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}