| 123456789101112131415161718192021222324252627282930313233 |
- Index: linux-2.4.35.4/drivers/mtd/mtdchar.c
- ===================================================================
- --- linux-2.4.35.4.orig/drivers/mtd/mtdchar.c
- +++ linux-2.4.35.4/drivers/mtd/mtdchar.c
- @@ -558,13 +558,13 @@ static void mtd_notify_add(struct mtd_in
- sprintf(name, "%d", mtd->index);
- devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
- DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2,
- - S_IFCHR | S_IRUGO | S_IWUGO,
- + S_IFCHR | S_IRUSR | S_IWUSR,
- &mtd_fops, NULL);
-
- sprintf(name, "%dro", mtd->index);
- devfs_ro_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
- DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2+1,
- - S_IFCHR | S_IRUGO,
- + S_IFCHR | S_IRUSR,
- &mtd_fops, NULL);
- }
-
- Index: linux-2.4.35.4/drivers/mtd/mtdblock.c
- ===================================================================
- --- linux-2.4.35.4.orig/drivers/mtd/mtdblock.c
- +++ linux-2.4.35.4/drivers/mtd/mtdblock.c
- @@ -601,7 +601,7 @@ static void mtd_notify_add(struct mtd_in
- sprintf(name, "%d", mtd->index);
- devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
- DEVFS_FL_DEFAULT, MTD_BLOCK_MAJOR, mtd->index,
- - S_IFBLK | S_IRUGO | S_IWUGO,
- + S_IFBLK | S_IRUSR | S_IWUSR,
- &mtd_fops, NULL);
- }
-
|