#ifndef _LINUX_TERMIOS_CONV_H
#define _LINUX_TERMIOS_CONV_H
#include <linux/uaccess.h>
#include <asm/termios.h>
#ifdef VDSUSP
#define INIT_C_CC_VDSUSP_EXTRA …
#else
#define INIT_C_CC_VDSUSP_EXTRA
#endif
#define INIT_C_CC …
int user_termio_to_kernel_termios(struct ktermios *, struct termio __user *);
int kernel_termios_to_user_termio(struct termio __user *, struct ktermios *);
#ifdef TCGETS2
int user_termios_to_kernel_termios(struct ktermios *, struct termios2 __user *);
int kernel_termios_to_user_termios(struct termios2 __user *, struct ktermios *);
int user_termios_to_kernel_termios_1(struct ktermios *, struct termios __user *);
int kernel_termios_to_user_termios_1(struct termios __user *, struct ktermios *);
#else
int user_termios_to_kernel_termios(struct ktermios *, struct termios __user *);
int kernel_termios_to_user_termios(struct termios __user *, struct ktermios *);
#endif
#endif