1 #ifndef _PRINTK_BRAILLE_H
2 #define _PRINTK_BRAILLE_H
4 #ifdef CONFIG_A11Y_BRAILLE_CONSOLE
7 braille_set_options(struct console_cmdline *c, char *brl_options)
9 c->brl_options = brl_options;
13 * Setup console according to braille options.
14 * Return -EINVAL on syntax error, 0 on success (or no braille option was
16 * Modifies str to point to the serial options
17 * Sets brl_options to the parsed braille options.
20 _braille_console_setup(char **str, char **brl_options);
23 _braille_register_console(struct console *console, struct console_cmdline *c);
26 _braille_unregister_console(struct console *console);
31 braille_set_options(struct console_cmdline *c, char *brl_options)
36 _braille_console_setup(char **str, char **brl_options)
42 _braille_register_console(struct console *console, struct console_cmdline *c)
48 _braille_unregister_console(struct console *console)