1/*
2 * Copyright (C) 2004-2006 Atmel Corporation
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#ifndef __ASM_AVR32_TERMIOS_H
9#define __ASM_AVR32_TERMIOS_H
10
11#include <uapi/asm/termios.h>
12
13/*	intr=^C		quit=^\		erase=del	kill=^U
14	eof=^D		vtime=\0	vmin=\1		sxtc=\0
15	start=^Q	stop=^S		susp=^Z		eol=\0
16	reprint=^R	discard=^U	werase=^W	lnext=^V
17	eol2=\0
18*/
19#define INIT_C_CC "\003\034\177\025\004\0\1\0\021\023\032\0\022\017\027\026\0"
20
21#include <asm-generic/termios-base.h>
22
23#endif	/* __ASM_AVR32_TERMIOS_H */
24