Fix up duplicate '__s3c2410wdt_stop()' function

Looks like somebody didn't get enough sleep.

Noticed-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

-11
-11
drivers/watchdog/s3c2410_wdt.c
··· 119 119 { 120 120 unsigned long wtcon; 121 121 122 - spin_lock(&wdt_lock); 123 - wtcon = readl(wdt_base + S3C2410_WTCON); 124 - wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN); 125 - writel(wtcon, wdt_base + S3C2410_WTCON); 126 - spin_unlock(&wdt_lock); 127 - } 128 - 129 - static void __s3c2410wdt_stop(void) 130 - { 131 - unsigned long wtcon; 132 - 133 122 wtcon = readl(wdt_base + S3C2410_WTCON); 134 123 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN); 135 124 writel(wtcon, wdt_base + S3C2410_WTCON);