cregit-Linux how code gets into the kernel

Release 4.7 include/linux/serial.h

Directory: include/linux
/*
 * 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 */

Overall Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git4887.27%562.50%
russell kingrussell king35.45%112.50%
david howellsdavid howells23.64%112.50%
tim schmielautim schmielau23.64%112.50%
Total55100.00%8100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}