diff options
author | Greg Ungerer <gerg@uclinux.org> | 2012-10-30 02:24:37 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-11-14 02:50:56 -0500 |
commit | 20e42aede9e7b78c2ffd8a03501e3090fbb78811 (patch) | |
tree | 16457d6506103b5674614656704e7d435531dcce /arch/m68k | |
parent | 599a0c4e125628eae356498a88177e9fbf183e79 (diff) |
m68k: switch to using the asm-generic termios.h
We don't need a local termios.h, switch to using the asm-generic versions.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/include/asm/Kbuild | 1 | ||||
-rw-r--r-- | arch/m68k/include/asm/termios.h | 50 | ||||
-rw-r--r-- | arch/m68k/include/uapi/asm/Kbuild | 2 | ||||
-rw-r--r-- | arch/m68k/include/uapi/asm/termios.h | 44 |
4 files changed, 2 insertions, 95 deletions
diff --git a/arch/m68k/include/asm/Kbuild b/arch/m68k/include/asm/Kbuild index 6c882877eda3..d62e01f869f5 100644 --- a/arch/m68k/include/asm/Kbuild +++ b/arch/m68k/include/asm/Kbuild | |||
@@ -26,6 +26,7 @@ generic-y += shmparam.h | |||
26 | generic-y += siginfo.h | 26 | generic-y += siginfo.h |
27 | generic-y += spinlock.h | 27 | generic-y += spinlock.h |
28 | generic-y += statfs.h | 28 | generic-y += statfs.h |
29 | generic-y += termios.h | ||
29 | generic-y += topology.h | 30 | generic-y += topology.h |
30 | generic-y += types.h | 31 | generic-y += types.h |
31 | generic-y += word-at-a-time.h | 32 | generic-y += word-at-a-time.h |
diff --git a/arch/m68k/include/asm/termios.h b/arch/m68k/include/asm/termios.h deleted file mode 100644 index ad8efb098663..000000000000 --- a/arch/m68k/include/asm/termios.h +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | #ifndef _M68K_TERMIOS_H | ||
2 | #define _M68K_TERMIOS_H | ||
3 | |||
4 | #include <uapi/asm/termios.h> | ||
5 | |||
6 | /* intr=^C quit=^| erase=del kill=^U | ||
7 | eof=^D vtime=\0 vmin=\1 sxtc=\0 | ||
8 | start=^Q stop=^S susp=^Z eol=\0 | ||
9 | reprint=^R discard=^U werase=^W lnext=^V | ||
10 | eol2=\0 | ||
11 | */ | ||
12 | #define INIT_C_CC "\003\034\177\025\004\0\1\0\021\023\032\0\022\017\027\026\0" | ||
13 | |||
14 | /* | ||
15 | * Translate a "termio" structure into a "termios". Ugh. | ||
16 | */ | ||
17 | #define user_termio_to_kernel_termios(termios, termio) \ | ||
18 | ({ \ | ||
19 | unsigned short tmp; \ | ||
20 | get_user(tmp, &(termio)->c_iflag); \ | ||
21 | (termios)->c_iflag = (0xffff0000 & ((termios)->c_iflag)) | tmp; \ | ||
22 | get_user(tmp, &(termio)->c_oflag); \ | ||
23 | (termios)->c_oflag = (0xffff0000 & ((termios)->c_oflag)) | tmp; \ | ||
24 | get_user(tmp, &(termio)->c_cflag); \ | ||
25 | (termios)->c_cflag = (0xffff0000 & ((termios)->c_cflag)) | tmp; \ | ||
26 | get_user(tmp, &(termio)->c_lflag); \ | ||
27 | (termios)->c_lflag = (0xffff0000 & ((termios)->c_lflag)) | tmp; \ | ||
28 | get_user((termios)->c_line, &(termio)->c_line); \ | ||
29 | copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \ | ||
30 | }) | ||
31 | |||
32 | /* | ||
33 | * Translate a "termios" structure into a "termio". Ugh. | ||
34 | */ | ||
35 | #define kernel_termios_to_user_termio(termio, termios) \ | ||
36 | ({ \ | ||
37 | put_user((termios)->c_iflag, &(termio)->c_iflag); \ | ||
38 | put_user((termios)->c_oflag, &(termio)->c_oflag); \ | ||
39 | put_user((termios)->c_cflag, &(termio)->c_cflag); \ | ||
40 | put_user((termios)->c_lflag, &(termio)->c_lflag); \ | ||
41 | put_user((termios)->c_line, &(termio)->c_line); \ | ||
42 | copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \ | ||
43 | }) | ||
44 | |||
45 | #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios2)) | ||
46 | #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2)) | ||
47 | #define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios)) | ||
48 | #define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios)) | ||
49 | |||
50 | #endif /* _M68K_TERMIOS_H */ | ||
diff --git a/arch/m68k/include/uapi/asm/Kbuild b/arch/m68k/include/uapi/asm/Kbuild index 931454eabd20..1fef45ada097 100644 --- a/arch/m68k/include/uapi/asm/Kbuild +++ b/arch/m68k/include/uapi/asm/Kbuild | |||
@@ -8,6 +8,7 @@ generic-y += shmbuf.h | |||
8 | generic-y += socket.h | 8 | generic-y += socket.h |
9 | generic-y += sockios.h | 9 | generic-y += sockios.h |
10 | generic-y += termbits.h | 10 | generic-y += termbits.h |
11 | generic-y += termios.h | ||
11 | 12 | ||
12 | header-y += a.out.h | 13 | header-y += a.out.h |
13 | header-y += byteorder.h | 14 | header-y += byteorder.h |
@@ -23,5 +24,4 @@ header-y += sigcontext.h | |||
23 | header-y += signal.h | 24 | header-y += signal.h |
24 | header-y += stat.h | 25 | header-y += stat.h |
25 | header-y += swab.h | 26 | header-y += swab.h |
26 | header-y += termios.h | ||
27 | header-y += unistd.h | 27 | header-y += unistd.h |
diff --git a/arch/m68k/include/uapi/asm/termios.h b/arch/m68k/include/uapi/asm/termios.h deleted file mode 100644 index ce2142c9ac1d..000000000000 --- a/arch/m68k/include/uapi/asm/termios.h +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | #ifndef _UAPI_M68K_TERMIOS_H | ||
2 | #define _UAPI_M68K_TERMIOS_H | ||
3 | |||
4 | #include <asm/termbits.h> | ||
5 | #include <asm/ioctls.h> | ||
6 | |||
7 | struct winsize { | ||
8 | unsigned short ws_row; | ||
9 | unsigned short ws_col; | ||
10 | unsigned short ws_xpixel; | ||
11 | unsigned short ws_ypixel; | ||
12 | }; | ||
13 | |||
14 | #define NCC 8 | ||
15 | struct termio { | ||
16 | unsigned short c_iflag; /* input mode flags */ | ||
17 | unsigned short c_oflag; /* output mode flags */ | ||
18 | unsigned short c_cflag; /* control mode flags */ | ||
19 | unsigned short c_lflag; /* local mode flags */ | ||
20 | unsigned char c_line; /* line discipline */ | ||
21 | unsigned char c_cc[NCC]; /* control characters */ | ||
22 | }; | ||
23 | |||
24 | |||
25 | /* modem lines */ | ||
26 | #define TIOCM_LE 0x001 | ||
27 | #define TIOCM_DTR 0x002 | ||
28 | #define TIOCM_RTS 0x004 | ||
29 | #define TIOCM_ST 0x008 | ||
30 | #define TIOCM_SR 0x010 | ||
31 | #define TIOCM_CTS 0x020 | ||
32 | #define TIOCM_CAR 0x040 | ||
33 | #define TIOCM_RNG 0x080 | ||
34 | #define TIOCM_DSR 0x100 | ||
35 | #define TIOCM_CD TIOCM_CAR | ||
36 | #define TIOCM_RI TIOCM_RNG | ||
37 | #define TIOCM_OUT1 0x2000 | ||
38 | #define TIOCM_OUT2 0x4000 | ||
39 | #define TIOCM_LOOP 0x8000 | ||
40 | |||
41 | /* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */ | ||
42 | |||
43 | |||
44 | #endif /* _UAPI_M68K_TERMIOS_H */ | ||