2009-05-15 10:36:04 +00:00
|
|
|
--- a/drivers/mtd/mtdchar.c
|
|
|
|
+++ b/drivers/mtd/mtdchar.c
|
2008-05-19 13:44:11 +00:00
|
|
|
@@ -558,13 +558,13 @@ static void mtd_notify_add(struct mtd_in
|
2008-01-06 19:28:07 +00:00
|
|
|
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);
|
|
|
|
|
2006-11-23 17:54:24 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2009-05-15 10:36:04 +00:00
|
|
|
--- a/drivers/mtd/mtdblock.c
|
|
|
|
+++ b/drivers/mtd/mtdblock.c
|
2008-05-19 13:44:11 +00:00
|
|
|
@@ -601,7 +601,7 @@ static void mtd_notify_add(struct mtd_in
|
2007-01-27 19:22:15 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|