[PATCH 3 of 11] MTD: Use SEEK_{SET, CUR,END} instead of hardcoded values

From: Josef 'Jeff' Sipek
Date: Sat Sep 16 2006 - 21:52:22 EST


MTD: Use SEEK_{SET,CUR,END} instead of hardcoded values

Signed-off-by: Josef 'Jeff' Sipek <jeffpc@xxxxxxxxxxxxxx>

--

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/