console_cmdline.h 327 字节
Newer Older
J
Joe Perches 已提交
1 2 3 4 5
#ifndef _CONSOLE_CMDLINE_H
#define _CONSOLE_CMDLINE_H

struct console_cmdline
{
6
	char	name[16];			/* Name of the driver	    */
J
Joe Perches 已提交
7 8 9 10 11 12 13 14
	int	index;				/* Minor dev. to use	    */
	char	*options;			/* Options for the driver   */
#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
	char	*brl_options;			/* Options for braille driver */
#endif
};

#endif