diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
commit | 57f0f512b273f60d52568b8c6b77e17f5636edc0 (patch) | |
tree | 5e910f0e82173f4ef4f51111366a3f1299037a7b /include/linux/serial.h |
Initial import
Diffstat (limited to 'include/linux/serial.h')
-rw-r--r-- | include/linux/serial.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/linux/serial.h b/include/linux/serial.h new file mode 100644 index 000000000..0916107c7 --- /dev/null +++ b/include/linux/serial.h @@ -0,0 +1,33 @@ +/* + * include/linux/serial.h + * + * Copyright (C) 1992 by Theodore Ts'o. + * + * Redistribution of this file is permitted under the terms of the GNU + * Public License (GPL) + */ +#ifndef _LINUX_SERIAL_H +#define _LINUX_SERIAL_H + +#include <asm/page.h> +#include <uapi/linux/serial.h> + + +/* + * Counters of the input lines (CTS, DSR, RI, CD) interrupts + */ + +struct async_icount { + __u32 cts, dsr, rng, dcd, tx, rx; + __u32 frame, parity, overrun, brk; + __u32 buf_overrun; +}; + +/* + * The size of the serial xmit buffer is 1 page, or 4096 bytes + */ +#define SERIAL_XMIT_SIZE PAGE_SIZE + +#include <linux/compiler.h> + +#endif /* _LINUX_SERIAL_H */ |