projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b627dbc
)
rtc-m41t80: use nonseekable_open()
author
Jan Blunck
<
[email protected]
>
Wed, 26 May 2010 21:44:47 +0000
(14:44 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 27 May 2010 16:12:56 +0000
(09:12 -0700)
Use nonseekable_open() for this since seeking is not supported anyway.
Signed-off-by: Jan Blunck <
[email protected]
>
Cc: Frederic Weisbecker <
[email protected]
>
Cc: Paul Gortmaker <
[email protected]
>
Cc: Alessandro Zummo <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-m41t80.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-m41t80.c
b/drivers/rtc/rtc-m41t80.c
index 038095d99976e294629873443866b63e7eb7d19e..6dc4e6241418ac601a40abf5dfb0744401d44d5d 100644
(file)
--- a/
drivers/rtc/rtc-m41t80.c
+++ b/
drivers/rtc/rtc-m41t80.c
@@
-595,10
+595,6
@@
static void wdt_disable(void)
static ssize_t wdt_write(struct file *file, const char __user *buf,
size_t count, loff_t *ppos)
{
- /* Can't seek (pwrite) on this device
- if (ppos != &file->f_pos)
- return -ESPIPE;
- */
if (count) {
wdt_ping();
return 1;
@@
-707,7
+703,7
@@
static int wdt_open(struct inode *inode, struct file *file)
*/
wdt_is_open = 1;
unlock_kernel();
- return
0
;
+ return
nonseekable_open(inode, file)
;
}
return -ENODEV;
}