mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-09-12 03:14:28 +08:00
18 lines
391 B
C
Executable File
18 lines
391 B
C
Executable File
#ifndef __QUERY_PCIE_MODE__
|
|
#define __QUERY_PCIE_MODE__
|
|
|
|
extern int speed_arr[14];
|
|
extern int name_arr[14];
|
|
|
|
extern int get_pcie_mode_debug;
|
|
|
|
extern int get_private_gateway_debug;
|
|
|
|
extern int xset1(int fd, struct termios *tio, const char *device);
|
|
|
|
// set raw tty mode
|
|
extern void xget1(int fd, struct termios *t, struct termios *oldt);
|
|
extern int get_pcie_mode();
|
|
|
|
#endif
|