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