Blame view

kernel/printk/console_cmdline.h 327 Bytes
d197c43d0   Joe Perches   printk: add conso...
1
2
3
4
5
  #ifndef _CONSOLE_CMDLINE_H
  #define _CONSOLE_CMDLINE_H
  
  struct console_cmdline
  {
30a22c215   Peter Hurley   console: Fix cons...
6
  	char	name[16];			/* Name of the driver	    */
d197c43d0   Joe Perches   printk: add conso...
7
8
9
10
11
12
13
14
  	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