Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _CONSOLE_CMDLINE_H
0003 #define _CONSOLE_CMDLINE_H
0004 
0005 struct console_cmdline
0006 {
0007     char    name[16];           /* Name of the driver       */
0008     int index;              /* Minor dev. to use        */
0009     bool    user_specified;         /* Specified by command line vs. platform */
0010     char    *options;           /* Options for the driver   */
0011 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
0012     char    *brl_options;           /* Options for braille driver */
0013 #endif
0014 };
0015 
0016 #endif