aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/etrax/patches-2.6.30/600-create-device-serial.patch
diff options
context:
space:
mode:
authorClaudio Mignanti <c.mignanti@gmail.com>2009-10-01 15:44:28 +0000
committerClaudio Mignanti <c.mignanti@gmail.com>2009-10-01 15:44:28 +0000
commitef368dfc0573e03b9e58c806c1668d6762f4f799 (patch)
tree52aefba1b99e11ba12fe48d9f362e25465b37bff /target/linux/etrax/patches-2.6.30/600-create-device-serial.patch
parent054c54512f1120f037142964b0e51190d11b8904 (diff)
downloadupstream-ef368dfc0573e03b9e58c806c1668d6762f4f799.tar.gz
upstream-ef368dfc0573e03b9e58c806c1668d6762f4f799.tar.bz2
upstream-ef368dfc0573e03b9e58c806c1668d6762f4f799.zip
Implement sysfs interface for some specific cris driver
SVN-Revision: 17805
Diffstat (limited to 'target/linux/etrax/patches-2.6.30/600-create-device-serial.patch')
-rw-r--r--target/linux/etrax/patches-2.6.30/600-create-device-serial.patch44
1 files changed, 44 insertions, 0 deletions
diff --git a/target/linux/etrax/patches-2.6.30/600-create-device-serial.patch b/target/linux/etrax/patches-2.6.30/600-create-device-serial.patch
new file mode 100644
index 0000000000..516b98471f
--- /dev/null
+++ b/target/linux/etrax/patches-2.6.30/600-create-device-serial.patch
@@ -0,0 +1,44 @@
+--- a/drivers/serial/crisv10.c
++++ b/drivers/serial/crisv10.c
+@@ -31,6 +31,7 @@ static char *serial_version = "$Revision
+ #include <linux/module.h>
+ #include <linux/uaccess.h>
+ #include <linux/io.h>
++#include <linux/device.h>
+
+ #include <asm/irq.h>
+ #include <asm/dma.h>
+@@ -4414,6 +4415,8 @@ static const struct tty_operations rs_op
+ #endif
+ };
+
++static struct class *rs_class;
++
+ static int __init rs_init(void)
+ {
+ int i;
+@@ -4547,6 +4550,24 @@ static int __init 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;
+ }
+