diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-09 11:07:38 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-09 11:07:38 -0500 |
commit | 18821b0408efc92ec2804128ba9382a3bcebf132 (patch) | |
tree | f98fbf75e8e8f33965e489879505fb621e2f11bb /drivers/parisc | |
parent | 3b8ecd22447c4266500c0bcf97f035310543e494 (diff) | |
parent | 55e858c8483af427144f33b42b818b30612b82b0 (diff) |
Merge branch 'bkl-drivers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'bkl-drivers-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
agp: Remove the BKL from agp_open
inifiband: Remove BKL from ipath_open()
mips: Remove BKL from tb0219
drivers: Remove BKL from scx200_gpio
drivers: Remove BKL from pc8736x_gpio
parisc: Remove BKL from eisa_eeprom
rtc: Remove BKL from efirtc
input: Remove BKL from hp_sdc_rtc
hw_random: Remove BKL from core
macintosh: Remove BKL from ans-lcd
nvram: Drop the bkl from non-generic nvram_llseek()
nvram: Drop the bkl from nvram_llseek()
mem_class: Drop the bkl from memory_open()
spi: Remove BKL from spidev_open
drivers: Remove BKL from cs5535_gpio
drivers: Remove BKL from misc_open
Diffstat (limited to 'drivers/parisc')
-rw-r--r-- | drivers/parisc/eisa_eeprom.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index 8c0b26e9b98a..cce00ed81f37 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c | |||
@@ -75,17 +75,8 @@ static ssize_t eisa_eeprom_read(struct file * file, | |||
75 | return ret; | 75 | return ret; |
76 | } | 76 | } |
77 | 77 | ||
78 | static int eisa_eeprom_ioctl(struct inode *inode, struct file *file, | ||
79 | unsigned int cmd, | ||
80 | unsigned long arg) | ||
81 | { | ||
82 | return -ENOTTY; | ||
83 | } | ||
84 | |||
85 | static int eisa_eeprom_open(struct inode *inode, struct file *file) | 78 | static int eisa_eeprom_open(struct inode *inode, struct file *file) |
86 | { | 79 | { |
87 | cycle_kernel_lock(); | ||
88 | |||
89 | if (file->f_mode & FMODE_WRITE) | 80 | if (file->f_mode & FMODE_WRITE) |
90 | return -EINVAL; | 81 | return -EINVAL; |
91 | 82 | ||
@@ -104,7 +95,6 @@ static const struct file_operations eisa_eeprom_fops = { | |||
104 | .owner = THIS_MODULE, | 95 | .owner = THIS_MODULE, |
105 | .llseek = eisa_eeprom_llseek, | 96 | .llseek = eisa_eeprom_llseek, |
106 | .read = eisa_eeprom_read, | 97 | .read = eisa_eeprom_read, |
107 | .ioctl = eisa_eeprom_ioctl, | ||
108 | .open = eisa_eeprom_open, | 98 | .open = eisa_eeprom_open, |
109 | .release = eisa_eeprom_release, | 99 | .release = eisa_eeprom_release, |
110 | }; | 100 | }; |