This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / um / drivers / harddog_kern.c
index 147ec19..e3f3cdd 100644 (file)
@@ -82,7 +82,7 @@ static int harddog_open(struct inode *inode, struct file *file)
 
        timer_alive = 1;
        unlock_kernel();
-       return nonseekable_open(inode, file);
+       return 0;
 }
 
 extern void stop_watchdog(int in_fd, int out_fd);
@@ -108,6 +108,10 @@ extern int ping_watchdog(int fd);
 static ssize_t harddog_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;
+
        /*
         *      Refresh the timer.
         */