diff options
| author | Dave Jones <davej@codemonkey.org.uk> | 2003-03-23 16:50:53 -0800 |
|---|---|---|
| committer | Dave Jones <davej@codemonkey.org.uk> | 2003-03-23 16:50:53 -0800 |
| commit | a08a1a5fd2675eac4418b04de93c3d9779ebfb0b (patch) | |
| tree | 2525ac7919a08cd8405c0bad94a1d39f94777348 | |
| parent | 48f165a5446806a8c96e691b1f946c72c925dbec (diff) | |
[PATCH] fix wrong return type on parisc eisa_eeprom_llseek
| -rw-r--r-- | drivers/parisc/eisa_eeprom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index f8d2a036bfd4..35bfe159428e 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c @@ -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: |
