aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/etrax/patches-2.6.29/300-sysfs.patch
diff options
context:
space:
mode:
authorClaudio Mignanti <c.mignanti@gmail.com>2009-05-09 13:15:16 +0000
committerClaudio Mignanti <c.mignanti@gmail.com>2009-05-09 13:15:16 +0000
commit46e8f85a9c472eb382651707acecb258f2377af5 (patch)
tree77347c2fbd27d74aa93873358ca4b2812272f4d4 /target/linux/etrax/patches-2.6.29/300-sysfs.patch
parent007269b55ed1a794b16ef577f3db574b83305cde (diff)
downloadupstream-46e8f85a9c472eb382651707acecb258f2377af5.tar.gz
upstream-46e8f85a9c472eb382651707acecb258f2377af5.tar.bz2
upstream-46e8f85a9c472eb382651707acecb258f2377af5.zip
[etrax] add patches for 2.6.30, remove config-default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15743 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/etrax/patches-2.6.29/300-sysfs.patch')
-rw-r--r--target/linux/etrax/patches-2.6.29/300-sysfs.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/target/linux/etrax/patches-2.6.29/300-sysfs.patch b/target/linux/etrax/patches-2.6.29/300-sysfs.patch
deleted file mode 100644
index ffaec36758..0000000000
--- a/target/linux/etrax/patches-2.6.29/300-sysfs.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- a/drivers/serial/crisv10.c
-+++ b/drivers/serial/crisv10.c
-@@ -27,6 +27,7 @@ static char *serial_version = "$Revision
- #include <linux/kernel.h>
- #include <linux/mutex.h>
- #include <linux/bitops.h>
-+#include <linux/device.h>
-
- #include <asm/io.h>
- #include <asm/irq.h>
-@@ -4393,6 +4394,7 @@ static const struct tty_operations rs_op
- .tiocmset = rs_tiocmset
- };
-
-+static struct class *rs_class;
- static int __init
- rs_init(void)
- {
-@@ -4527,6 +4529,24 @@ rs_init(void)
- #endif
- #endif /* CONFIG_SVINTO_SIM */
-
-+ rs_class = class_create(THIS_MODULE, "rs_tty");
-+#ifdef CONFIG_ETRAX_SERIAL_PORT0
-+ device_create(rs_class, NULL,
-+ MKDEV(TTY_MAJOR, 64), NULL, "ttyS0");
-+#endif
-+#ifdef CONFIG_ETRAX_SERIAL_PORT1
-+ device_create(rs_class, NULL,
-+ MKDEV(TTY_MAJOR, 65), NULL, "ttyS1");
-+#endif
-+#ifdef CONFIG_ETRAX_SERIAL_PORT2
-+ device_create(rs_class, NULL,
-+ MKDEV(TTY_MAJOR, 66), NULL, "ttyS2");
-+#endif
-+#ifdef CONFIG_ETRAX_SERIAL_PORT3
-+ device_create(rs_class, NULL,
-+ MKDEV(TTY_MAJOR, 67), NULL, "ttyS3");
-+#endif
-+
- return 0;
- }
-