mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 17:11:34 +02:00
f3016ce71f
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11213 3c298f89-4303-0410-b956-a3cf2f4a3e73
34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
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);
|
|
}
|
|
|