Blame view

include/linux/serial.h 630 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  /*
   * 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)
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
10
  #ifndef _LINUX_SERIAL_H
  #define _LINUX_SERIAL_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
  #include <asm/page.h>
607ca46e9   David Howells   UAPI: (Scripted) ...
12
  #include <uapi/linux/serial.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13

ba3fe7aba   Alan Cox   tty: move the asy...
14

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  /*
   * 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
661f83a67   Russell King   [PATCH] Serial: M...
29
  #include <linux/compiler.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
  #endif /* _LINUX_SERIAL_H */