[WATCHDOG] Remove the redundant check for pwrite() in pnx4008 watchdog.

Given that the open routine already calls nonseekable_open(), remove
the redundant check for pwrite().

Signed-off-by: Robert P. J. Day <rpjday@mindspring.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
Robert P. J. Day 2007-05-28 14:55:06 -04:00 коммит произвёл Wim Van Sebroeck
Родитель 4d389dcea8
Коммит 4cf85459e0
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -148,10 +148,6 @@ static ssize_t
pnx4008_wdt_write(struct file *file, const char *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;