mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
[ARM SMP] mpcore_wdt bogus fpos check
drivers/char/watchdog/mpcore_wdt.c write function contains a check for (ppos != &file->f_pos). Such check used to make sense when a pointer to file->f_pos was handed by vfs_write(), not a copy of it as it stands now. Signed-off-by: Marcelo Tosatti <marcelo.tosatti@cyclades.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
db20da32a2
commit
9ddf61bd09
@ -180,10 +180,6 @@ static ssize_t mpcore_wdt_write(struct file *file, const char *data, size_t len,
|
|||||||
{
|
{
|
||||||
struct mpcore_wdt *wdt = file->private_data;
|
struct mpcore_wdt *wdt = file->private_data;
|
||||||
|
|
||||||
/* Can't seek (pwrite) on this device */
|
|
||||||
if (ppos != &file->f_pos)
|
|
||||||
return -ESPIPE;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Refresh the timer.
|
* Refresh the timer.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user