Messages in this thread Patch in this message |  | | | Date | Mon, 24 Mar 2003 16:41:51 +0000 | | From | davej@codemonk ... | | Subject | fix wrong return type on parisc eisa_eeprom_llseek |
| |
diff -urpN --exclude-from=/home/davej/.exclude bk-linus/drivers/parisc/eisa_eeprom.c linux-2.5/drivers/parisc/eisa_eeprom.c --- bk-linus/drivers/parisc/eisa_eeprom.c 2003-03-08 09:57:21.000000000 +0000 +++ linux-2.5/drivers/parisc/eisa_eeprom.c 2003-03-17 23:42:30.000000000 +0000 @@ -12,7 +12,7 @@ static unsigned long eeprom_addr; -static long long eisa_eeprom_llseek(struct file *file, loff_t offset, int origin ) +static loff_t eisa_eeprom_llseek(struct file *file, loff_t offset, int origin ) { switch (origin) { case 0: - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |