diff options
author | Claudio Mignanti <c.mignanti@gmail.com> | 2009-10-02 08:07:39 +0000 |
---|---|---|
committer | Claudio Mignanti <c.mignanti@gmail.com> | 2009-10-02 08:07:39 +0000 |
commit | b88e08839a8f61f2c9829ba6c9e37b4d60b84b62 (patch) | |
tree | 70599f9b61f46047bae7a561b8a0ba2a75fb3402 /target/linux/etrax/patches-2.6.25/300-sysfs.patch | |
parent | f82630617944fa6b4dc05b4035d6bfa457d2b64c (diff) | |
download | upstream-b88e08839a8f61f2c9829ba6c9e37b4d60b84b62.tar.gz upstream-b88e08839a8f61f2c9829ba6c9e37b4d60b84b62.tar.bz2 upstream-b88e08839a8f61f2c9829ba6c9e37b4d60b84b62.zip |
dump 2.6.25 support
SVN-Revision: 17816
Diffstat (limited to 'target/linux/etrax/patches-2.6.25/300-sysfs.patch')
-rw-r--r-- | target/linux/etrax/patches-2.6.25/300-sysfs.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/target/linux/etrax/patches-2.6.25/300-sysfs.patch b/target/linux/etrax/patches-2.6.25/300-sysfs.patch deleted file mode 100644 index a7bebe52d8..0000000000 --- a/target/linux/etrax/patches-2.6.25/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> -@@ -4384,6 +4385,7 @@ static const struct tty_operations rs_op - .tiocmset = rs_tiocmset - }; - -+static struct class *rs_class; - static int __init - rs_init(void) - { -@@ -4518,6 +4520,24 @@ rs_init(void) - #endif - #endif /* CONFIG_SVINTO_SIM */ - -+ rs_class = class_create(THIS_MODULE, "rs_tty"); -+#ifdef CONFIG_ETRAX_SERIAL_PORT0 -+ class_device_create(rs_class, NULL, -+ MKDEV(TTY_MAJOR, 64), NULL, "ttyS0"); -+#endif -+#ifdef CONFIG_ETRAX_SERIAL_PORT1 -+ class_device_create(rs_class, NULL, -+ MKDEV(TTY_MAJOR, 65), NULL, "ttyS1"); -+#endif -+#ifdef CONFIG_ETRAX_SERIAL_PORT2 -+ class_device_create(rs_class, NULL, -+ MKDEV(TTY_MAJOR, 66), NULL, "ttyS2"); -+#endif -+#ifdef CONFIG_ETRAX_SERIAL_PORT3 -+ class_device_create(rs_class, NULL, -+ MKDEV(TTY_MAJOR, 67), NULL, "ttyS3"); -+#endif -+ - return 0; - } - |