aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/watchdog
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@mindspring.com>2007-05-28 14:51:29 -0400
committerWim Van Sebroeck <wim@iguana.be>2007-06-03 13:21:36 +0000
commita9e8bb5b60a9f5c10d38aebc13f8a3d2e1ffc0e7 (patch)
tree8090cfe1bf554f6c96d5465dff3af263355a8acd /drivers/char/watchdog
parent[WATCHDOG] Remove the redundant check for pwrite() in pnx4008 watchdog. (diff)
downloadlinux-dev-a9e8bb5b60a9f5c10d38aebc13f8a3d2e1ffc0e7.tar.xz
linux-dev-a9e8bb5b60a9f5c10d38aebc13f8a3d2e1ffc0e7.zip
[WATCHDOG] Remove the redundant check for pwrite() in EP93XXX watchdog.
Remove the redundant check for pwrite(), given that the open() routine already invokes nonseekable_open(). Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/char/watchdog')
-rw-r--r--drivers/char/watchdog/ep93xx_wdt.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/char/watchdog/ep93xx_wdt.c b/drivers/char/watchdog/ep93xx_wdt.c
index 01cf123b1616..0e4787a0bb87 100644
--- a/drivers/char/watchdog/ep93xx_wdt.c
+++ b/drivers/char/watchdog/ep93xx_wdt.c
@@ -107,10 +107,6 @@ static ssize_t
ep93xx_wdt_write(struct file *file, const char __user *data, size_t len,
loff_t *ppos)
{
- /* Can't seek (pwrite) on this device */
- if (*ppos != file->f_pos)
- return -ESPIPE;
-
if (len) {
if (!nowayout) {
size_t i;