[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <7d3e8ba1ace3bd0315cc.1158455369@turing.ams.sunysb.edu>
Date: Sat, 16 Sep 2006 21:09:29 -0400
From: "Josef 'Jeff' Sipek" <jeffpc@...efsipek.net>
To: linux-kernel@...r.kernel.org
Cc: dwmw2@...radead.org, akpm@...l.org, dhowells@...hat.com
Subject: [PATCH 3 of 11] MTD: Use SEEK_{SET, CUR,
END} instead of hardcoded values
MTD: Use SEEK_{SET,CUR,END} instead of hardcoded values
Signed-off-by: Josef 'Jeff' Sipek <jeffpc@...efsipek.net>
--
diff -r e90cdef08ec3 -r 7d3e8ba1ace3 drivers/mtd/mtdchar.c
--- a/drivers/mtd/mtdchar.c Sat Sep 16 21:00:45 2006 -0400
+++ b/drivers/mtd/mtdchar.c Sat Sep 16 21:00:45 2006 -0400
@@ -62,15 +62,12 @@ static loff_t mtd_lseek (struct file *fi
struct mtd_info *mtd = mfi->mtd;
switch (orig) {
- case 0:
- /* SEEK_SET */
- break;
- case 1:
- /* SEEK_CUR */
+ case SEEK_SET:
+ break;
+ case SEEK_CUR:
offset += file->f_pos;
break;
- case 2:
- /* SEEK_END */
+ case SEEK_END:
offset += mtd->size;
break;
default:
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists