diff options
author | Marcelo Tosatti <marcelo.tosatti@cyclades.com> | 2006-01-08 04:00:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:12:38 -0500 |
commit | 70c00ba0bbfb583e39b964ebd88620c18aa02c62 (patch) | |
tree | 21ea7e57faec02e154ba1e2029a12da94c0829d0 /drivers/input | |
parent | 5998bf1ddb5fb236597190b2274d357add63fd7e (diff) |
[PATCH] small hp_sdc_rtc cleanup: use no_llseek
Use no_llseek function.
Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com>
Cc: "Brian S. Julin" <bri@calyx.com>
Acked-by: Vojtech Pavlik <vojtech@suse.cz>
Cc: Dmitry Torokhov <dtor_core@ameritech.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/misc/hp_sdc_rtc.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/input/misc/hp_sdc_rtc.c b/drivers/input/misc/hp_sdc_rtc.c index 1cd7657f7e42..1be963961c15 100644 --- a/drivers/input/misc/hp_sdc_rtc.c +++ b/drivers/input/misc/hp_sdc_rtc.c | |||
@@ -60,8 +60,6 @@ static struct fasync_struct *hp_sdc_rtc_async_queue; | |||
60 | 60 | ||
61 | static DECLARE_WAIT_QUEUE_HEAD(hp_sdc_rtc_wait); | 61 | static DECLARE_WAIT_QUEUE_HEAD(hp_sdc_rtc_wait); |
62 | 62 | ||
63 | static loff_t hp_sdc_rtc_llseek(struct file *file, loff_t offset, int origin); | ||
64 | |||
65 | static ssize_t hp_sdc_rtc_read(struct file *file, char *buf, | 63 | static ssize_t hp_sdc_rtc_read(struct file *file, char *buf, |
66 | size_t count, loff_t *ppos); | 64 | size_t count, loff_t *ppos); |
67 | 65 | ||
@@ -387,11 +385,6 @@ static int hp_sdc_rtc_set_i8042timer (struct timeval *setto, uint8_t setcmd) | |||
387 | return 0; | 385 | return 0; |
388 | } | 386 | } |
389 | 387 | ||
390 | static loff_t hp_sdc_rtc_llseek(struct file *file, loff_t offset, int origin) | ||
391 | { | ||
392 | return -ESPIPE; | ||
393 | } | ||
394 | |||
395 | static ssize_t hp_sdc_rtc_read(struct file *file, char *buf, | 388 | static ssize_t hp_sdc_rtc_read(struct file *file, char *buf, |
396 | size_t count, loff_t *ppos) { | 389 | size_t count, loff_t *ppos) { |
397 | ssize_t retval; | 390 | ssize_t retval; |
@@ -679,7 +672,7 @@ static int hp_sdc_rtc_ioctl(struct inode *inode, struct file *file, | |||
679 | 672 | ||
680 | static struct file_operations hp_sdc_rtc_fops = { | 673 | static struct file_operations hp_sdc_rtc_fops = { |
681 | .owner = THIS_MODULE, | 674 | .owner = THIS_MODULE, |
682 | .llseek = hp_sdc_rtc_llseek, | 675 | .llseek = no_llseek, |
683 | .read = hp_sdc_rtc_read, | 676 | .read = hp_sdc_rtc_read, |
684 | .poll = hp_sdc_rtc_poll, | 677 | .poll = hp_sdc_rtc_poll, |
685 | .ioctl = hp_sdc_rtc_ioctl, | 678 | .ioctl = hp_sdc_rtc_ioctl, |