• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2020 Petr Vorel <pvorel@suse.cz>
4  */
5 
6 #ifndef LAPI_TTY_H__
7 #define LAPI_TTY_H__
8 
9 #ifdef HAVE_LINUX_TTY_H
10 # include <linux/tty.h>
11 #endif
12 
13 #ifndef N_HDLC
14 # define N_HDLC 13
15 #endif
16 
17 #ifndef N_SLCAN
18 # define N_SLCAN		17	/* Serial / USB serial CAN Adaptors */
19 #endif
20 
21 #endif /* LAPI_TTY_H__ */
22