diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-12-06 23:51:34 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1997-12-06 23:51:34 +0000 |
commit | 230e5ab6a084ed50470f101934782dbf54b0d06b (patch) | |
tree | 5dd821c8d33f450470588e7a543f74bf74306e9e /drivers/char/wdt.c | |
parent | c9b1c8a64c6444d189856f1e26bdcb8b4cd0113a (diff) |
Merge with Linux 2.1.67.
Diffstat (limited to 'drivers/char/wdt.c')
-rw-r--r-- | drivers/char/wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/wdt.c b/drivers/char/wdt.c index cbe763975..37f444e29 100644 --- a/drivers/char/wdt.c +++ b/drivers/char/wdt.c @@ -169,7 +169,7 @@ static void wdt_ping(void) outb_p(0, WDT_DC); } -static long wdt_write(struct inode *inode, struct file *file, const char *buf, unsigned long count) +static ssize_t wdt_write(struct file *file, const char *buf, size_t count, loff_t *ppos) { if(count) { @@ -183,13 +183,13 @@ static long wdt_write(struct inode *inode, struct file *file, const char *buf, u * Read reports the temperature in farenheit */ -static long wdt_read(struct inode *inode, struct file *file, char *buf, unsigned long count) +static ssize_t wdt_read(struct file *file, char *buf, size_t count, loff_t *ptr) { unsigned short c=inb_p(WDT_RT); unsigned char cp; int err; - switch(MINOR(inode->i_rdev)) + switch(MINOR(file->f_dentry->d_inode->i_rdev)) { case TEMP_MINOR: err=verify_area(VERIFY_WRITE, buf, 1); |