最終更新:2013-01-31 (木) 20:26:41 (4111d)  

uart_driver
Top / uart_driver

struct uart_driver {
	struct module           *owner;
	const char              *driver_name;
	const char              *dev_name;
	int                      major;
	int                      minor;
	int                      nr;
	struct console          *cons;

	/*
	* these are private; the low level driver should not
	* touch these; they should be initialised to NULL
	*/
	struct uart_state       *state;
	struct tty_driver       *tty_driver;
};