Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 1 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 2 | |
| 3 | #include <linux/kernel.h> |
| 4 | #include <linux/console.h> |
Samuel Thibault | 2ed2b86 | 2017-03-26 22:47:36 +0200 | [diff] [blame] | 5 | #include <linux/errno.h> |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 6 | #include <linux/string.h> |
| 7 | |
| 8 | #include "console_cmdline.h" |
| 9 | #include "braille.h" |
| 10 | |
Samuel Thibault | 2ed2b86 | 2017-03-26 22:47:36 +0200 | [diff] [blame] | 11 | int _braille_console_setup(char **str, char **brl_options) |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 12 | { |
Nicolas Iooss | ae6c33b | 2016-08-25 15:17:00 -0700 | [diff] [blame] | 13 | if (!strncmp(*str, "brl,", 4)) { |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 14 | *brl_options = ""; |
| 15 | *str += 4; |
Nicolas Iooss | ae6c33b | 2016-08-25 15:17:00 -0700 | [diff] [blame] | 16 | } else if (!strncmp(*str, "brl=", 4)) { |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 17 | *brl_options = *str + 4; |
| 18 | *str = strchr(*brl_options, ','); |
Samuel Thibault | 2ed2b86 | 2017-03-26 22:47:36 +0200 | [diff] [blame] | 19 | if (!*str) { |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 20 | pr_err("need port name after brl=\n"); |
Samuel Thibault | 2ed2b86 | 2017-03-26 22:47:36 +0200 | [diff] [blame] | 21 | return -EINVAL; |
| 22 | } |
| 23 | *((*str)++) = 0; |
| 24 | } |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 25 | |
Samuel Thibault | 2ed2b86 | 2017-03-26 22:47:36 +0200 | [diff] [blame] | 26 | return 0; |
Joe Perches | bbeddf5 | 2013-07-31 13:53:45 -0700 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | int |
| 30 | _braille_register_console(struct console *console, struct console_cmdline *c) |
| 31 | { |
| 32 | int rtn = 0; |
| 33 | |
| 34 | if (c->brl_options) { |
| 35 | console->flags |= CON_BRL; |
| 36 | rtn = braille_register_console(console, c->index, c->options, |
| 37 | c->brl_options); |
| 38 | } |
| 39 | |
| 40 | return rtn; |
| 41 | } |
| 42 | |
| 43 | int |
| 44 | _braille_unregister_console(struct console *console) |
| 45 | { |
| 46 | if (console->flags & CON_BRL) |
| 47 | return braille_unregister_console(console); |
| 48 | |
| 49 | return 0; |
| 50 | } |