[COMMON] watchdog: s3c2410_wdt: change function to inline type
authorHyunki Koo <hyunki00.koo@samsung.com>
Tue, 14 Feb 2017 08:03:05 +0000 (00:03 -0800)
committerJaehyoung Choi <jkkkkk.choi@samsung.com>
Wed, 9 May 2018 11:27:47 +0000 (20:27 +0900)
Change-Id: I5014b3266b2681e896bc371c7f467e791f68056b
Signed-off-by: Hyunki Koo <hyunki00.koo@samsung.com>
drivers/watchdog/s3c2410_wdt.c

index 7d31b7818a3fb606067e9575e87c39bbbd2712cd..bb95a30352ddeae3bce583bdb10aa9f75bdfcf83 100644 (file)
@@ -617,10 +617,10 @@ static int s3c2410wdt_panic_handler(struct notifier_block *nb,
        return 0;
 }
 
-int s3c2410wdt_set_emergency_reset(unsigned int timeout_cnt)
+inline int s3c2410wdt_set_emergency_reset(unsigned int timeout_cnt)
 {
        struct s3c2410_wdt *wdt = s3c_wdt;
-       unsigned int wtdat = 0x100;
+       unsigned int wtdat = 0;
        unsigned int wtcnt = wtdat + timeout_cnt;
        unsigned long wtcon;