2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2013-07-31 13:53:44 -07:00
|
|
|
#ifndef _CONSOLE_CMDLINE_H
|
|
|
|
|
#define _CONSOLE_CMDLINE_H
|
|
|
|
|
|
|
|
|
|
struct console_cmdline
|
|
|
|
|
{
|
2015-03-01 10:11:05 -05:00
|
|
|
char name[16]; /* Name of the driver */
|
2013-07-31 13:53:44 -07:00
|
|
|
int index; /* Minor dev. to use */
|
2024-07-03 13:06:08 +03:00
|
|
|
char devname[32]; /* DEVNAME:0.0 style device name */
|
2020-02-13 10:51:32 +01:00
|
|
|
bool user_specified; /* Specified by command line vs. platform */
|
2013-07-31 13:53:44 -07:00
|
|
|
char *options; /* Options for the driver */
|
|
|
|
|
#ifdef CONFIG_A11Y_BRAILLE_CONSOLE
|
|
|
|
|
char *brl_options; /* Options for braille driver */
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|