summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.4/patches/009-mtd_uaccess.patch
blob: fd0a9a47ea5963477bd2c654ddc50507cc7c092c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
 }