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

Commit 0b930261 authored by Sachin Kamat's avatar Sachin Kamat Committed by Wim Van Sebroeck
Browse files

watchdog: dw_wdt: Staticize local symbol



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

Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent cf3cc8c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -154,8 +154,8 @@ static int dw_wdt_open(struct inode *inode, struct file *filp)
	return nonseekable_open(inode, filp);
}

ssize_t dw_wdt_write(struct file *filp, const char __user *buf, size_t len,
		     loff_t *offset)
static ssize_t dw_wdt_write(struct file *filp, const char __user *buf,
			    size_t len, loff_t *offset)
{
	if (!len)
		return 0;