mirror of https://github.com/hak5/openwrt.git
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
--- a/drivers/mtd/mtdchar.c
|
|
+++ b/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);
|
|
}
|
|
|
|
--- a/drivers/mtd/mtdblock.c
|
|
+++ b/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);
|
|
}
|
|
|