forward port missing parts of the mtd permission change in whiterussian (and add...
[openwrt/svn-archive/archive.git] / target / linux / generic-2.4 / patches / 009-mtd_uaccess.patch
1 --- linux.old/drivers/mtd/mtdchar.c 2006-11-23 18:48:56.000000000 +0100
2 +++ linux.dev/drivers/mtd/mtdchar.c 2006-11-23 18:49:11.000000000 +0100
3 @@ -564,7 +564,7 @@
4 sprintf(name, "%dro", mtd->index);
5 devfs_ro_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
6 DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2+1,
7 - S_IFCHR | S_IRUGO,
8 + S_IFCHR | S_IRUSR,
9 &mtd_fops, NULL);
10 }
11
12 --- linux-2.4.30/drivers/mtd/mtdblock.c.orig 2006-03-26 06:38:36 -05:00
13 +++ linux-2.4.30/drivers/mtd/mtdblock.c 2006-03-26 06:38:54 -05:00
14 @@ -601,7 +601,7 @@
15 sprintf(name, "%d", mtd->index);
16 devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
17 DEVFS_FL_DEFAULT, MTD_BLOCK_MAJOR, mtd->index,
18 - S_IFBLK | S_IRUGO | S_IWUGO,
19 + S_IFBLK | S_IRUSR | S_IWUSR,
20 &mtd_fops, NULL);
21 }
22
23 --- linux-2.4.30/drivers/mtd/mtdchar.c.orig 2006-03-26 06:42:23 -05:00
24 +++ linux-2.4.30/drivers/mtd/mtdchar.c 2006-03-26 06:42:41 -05:00
25 @@ -558,7 +558,7 @@
26 sprintf(name, "%d", mtd->index);
27 devfs_rw_handle[mtd->index] = devfs_register(devfs_dir_handle, name,
28 DEVFS_FL_DEFAULT, MTD_CHAR_MAJOR, mtd->index*2,
29 - S_IFCHR | S_IRUGO | S_IWUGO,
30 + S_IFCHR | S_IRUSR | S_IWUSR,
31 &mtd_fops, NULL);
32
33 sprintf(name, "%dro", mtd->index);