2019-05-27 08:55:01 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
* Liberally adapted from alpha/termios.h. In particular, the c_cc[]
|
|
|
|
* fields have been reordered so that termio & termios share the
|
|
|
|
* common subset in the same order (for brain dead programs that don't
|
|
|
|
* know or care about the differences).
|
|
|
|
*/
|
2012-10-09 09:47:26 +01:00
|
|
|
#ifndef _ASM_POWERPC_TERMIOS_H
|
|
|
|
#define _ASM_POWERPC_TERMIOS_H
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2012-10-09 09:47:26 +01:00
|
|
|
#include <uapi/asm/termios.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
/* ^C ^\ del ^U ^D 1 0 0 0 0 ^W ^R ^Z ^Q ^S ^V ^U */
|
|
|
|
#define INIT_C_CC "\003\034\177\025\004\001\000\000\000\000\027\022\032\021\023\026\025"
|
|
|
|
|
2009-05-13 22:56:24 +00:00
|
|
|
#include <asm-generic/termios-base.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2005-09-07 15:27:09 -05:00
|
|
|
#endif /* _ASM_POWERPC_TERMIOS_H */
|