diff options
Diffstat (limited to 'drivers/parisc/eisa_eeprom.c')
| -rw-r--r-- | drivers/parisc/eisa_eeprom.c | 16 | 
1 files changed, 2 insertions, 14 deletions
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index cce00ed81f3..783906fe659 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c @@ -24,7 +24,6 @@  #include <linux/kernel.h>  #include <linux/miscdevice.h>  #include <linux/slab.h> -#include <linux/smp_lock.h>  #include <linux/fs.h>  #include <asm/io.h>  #include <asm/uaccess.h> @@ -32,20 +31,9 @@  #define 	EISA_EEPROM_MINOR 241 -static loff_t 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: -		/* nothing to do */ -		break; -	  case 1: -		offset += file->f_pos; -		break; -	  case 2: -		offset += HPEE_MAX_LENGTH; -		break; -	} -	return (offset >= 0 && offset < HPEE_MAX_LENGTH) ? (file->f_pos = offset) : -EINVAL; +	return fixed_size_llseek(file, offset, origin, HPEE_MAX_LENGTH);  }  static ssize_t eisa_eeprom_read(struct file * file,  | 
