You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
354 B
22 lines
354 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2020 Petr Vorel <pvorel@suse.cz>
|
|
*/
|
|
|
|
#ifndef LAPI_TTY_H__
|
|
#define LAPI_TTY_H__
|
|
|
|
#ifdef HAVE_LINUX_TTY_H
|
|
# include <linux/tty.h>
|
|
#endif
|
|
|
|
#ifndef N_HDLC
|
|
# define N_HDLC 13
|
|
#endif
|
|
|
|
#ifndef N_SLCAN
|
|
# define N_SLCAN 17 /* Serial / USB serial CAN Adaptors */
|
|
#endif
|
|
|
|
#endif /* LAPI_TTY_H__ */
|