^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) #ifndef _CONSOLE_CMDLINE_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) #define _CONSOLE_CMDLINE_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) struct console_cmdline
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7) char name[16]; /* Name of the driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) int index; /* Minor dev. to use */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) bool user_specified; /* Specified by command line vs. platform */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) char *options; /* Options for the driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) char *brl_options; /* Options for braille driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #endif