2013-08-01 00:53:44 +04:00
|
|
|
#ifndef _CONSOLE_CMDLINE_H
|
|
|
|
#define _CONSOLE_CMDLINE_H
|
|
|
|
|
|
|
|
struct console_cmdline
|
|
|
|
{
|
2015-03-01 18:11:05 +03:00
|
|
|
char name[16]; /* Name of the driver */
|
2013-08-01 00:53:44 +04:00
|
|
|
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
|