David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Liberally adapted from alpha/termios.h. In particular, the c_cc[] |
| 4 | * fields have been reordered so that termio & termios share the |
| 5 | * common subset in the same order (for brain dead programs that don't |
| 6 | * know or care about the differences). |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 7 | */ |
| 8 | #ifndef _ASM_POWERPC_TERMIOS_H |
| 9 | #define _ASM_POWERPC_TERMIOS_H |
| 10 | |
| 11 | #include <uapi/asm/termios.h> |
| 12 | |
| 13 | /* ^C ^\ del ^U ^D 1 0 0 0 0 ^W ^R ^Z ^Q ^S ^V ^U */ |
| 14 | #define INIT_C_CC "\003\034\177\025\004\001\000\000\000\000\027\022\032\021\023\026\025" |
| 15 | |
| 16 | #include <asm-generic/termios-base.h> |
| 17 | |
| 18 | #endif /* _ASM_POWERPC_TERMIOS_H */ |