summaryrefslogtreecommitdiffstats
path: root/include/asm-xtensa/termios.h
diff options
context:
space:
mode:
authorAlan Cox2007-08-22 19:54:43 +0200
committerChris Zankel2007-08-27 22:54:25 +0200
commitebb2a97b2e7422176d52f4f33e3ee400653875b4 (patch)
tree85c02ad4d4e29b26c29e629b1ac99627ea130d94 /include/asm-xtensa/termios.h
parent[patch 2/2] xtensa console.c: remove duplicate #include (diff)
downloadkernel-qcow2-linux-ebb2a97b2e7422176d52f4f33e3ee400653875b4.tar.gz
kernel-qcow2-linux-ebb2a97b2e7422176d52f4f33e3ee400653875b4.tar.xz
kernel-qcow2-linux-ebb2a97b2e7422176d52f4f33e3ee400653875b4.zip
[patch 1/2] Xtensa: enable arbitary tty speed setting ioctls
Adding the defines/constants activates the existing code in the tty layer and allows arbitary tty speeds to be requested on this platform Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'include/asm-xtensa/termios.h')
-rw-r--r--include/asm-xtensa/termios.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-xtensa/termios.h b/include/asm-xtensa/termios.h
index f14b42c8dac0..4673f42f88a7 100644
--- a/include/asm-xtensa/termios.h
+++ b/include/asm-xtensa/termios.h
@@ -95,8 +95,10 @@ struct termio {
copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \
})
-#define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios))
-#define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios))
+#define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios2))
+#define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2))
+#define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios))
+#define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios))
#endif /* __KERNEL__ */