diff options
author | Nicolas Pitre <nico@cam.org> | 2005-04-01 10:36:15 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-05-23 07:07:33 -0400 |
commit | 81dba488792b29cc8cb2b3d49407be05303dde16 (patch) | |
tree | 60838f712b06c3e8a6acf22df81992d8d26c139a | |
parent | 998cf6403cdaac74211c619772bea027274ffc42 (diff) |
[MTD] Reset file position when switching OTP mode
Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | drivers/mtd/mtdchar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index 548b89204aa2..da3f1a8f756e 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: mtdchar.c,v 1.68 2005/02/08 19:12:50 nico Exp $ | 2 | * $Id: mtdchar.c,v 1.70 2005/04/01 15:36:11 nico Exp $ |
3 | * | 3 | * |
4 | * Character-device access to raw MTD devices. | 4 | * Character-device access to raw MTD devices. |
5 | * | 5 | * |
@@ -583,6 +583,7 @@ static int mtd_ioctl(struct inode *inode, struct file *file, | |||
583 | case MTD_OTP_OFF: | 583 | case MTD_OTP_OFF: |
584 | break; | 584 | break; |
585 | } | 585 | } |
586 | file->f_pos = 0; | ||
586 | break; | 587 | break; |
587 | } | 588 | } |
588 | 589 | ||