console_cmdline.h 327 B

1234567891011121314
  1. #ifndef _CONSOLE_CMDLINE_H
  2. #define _CONSOLE_CMDLINE_H
  3. struct console_cmdline
  4. {
  5. char name[16]; /* Name of the driver */
  6. int index; /* Minor dev. to use */
  7. char *options; /* Options for the driver */
  8. #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
  9. char *brl_options; /* Options for braille driver */
  10. #endif
  11. };
  12. #endif