watchdog: dw_wdt: Staticize local symbol

'dw_wdt_write' is used only in this file. Make it static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Sachin Kamat 2013-05-14 12:11:03 +05:30 committed by Wim Van Sebroeck
parent cf3cc8c252
commit 0b93026199

View File

@ -154,8 +154,8 @@ static int dw_wdt_open(struct inode *inode, struct file *filp)
return nonseekable_open(inode, filp); return nonseekable_open(inode, filp);
} }
ssize_t dw_wdt_write(struct file *filp, const char __user *buf, size_t len, static ssize_t dw_wdt_write(struct file *filp, const char __user *buf,
loff_t *offset) size_t len, loff_t *offset)
{ {
if (!len) if (!len)
return 0; return 0;