From a1df417e74aa6dae7352dc8cbb0ad471af5b7c69 Mon Sep 17 00:00:00 2001 From: "Michael J. Chudobiak" Date: Mon, 25 Apr 2016 10:00:44 -0400 Subject: initial Olimex linux tree from Daniel, originally Feb 3, 2016 --- linux/kernel/printk/console_cmdline.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 linux/kernel/printk/console_cmdline.h (limited to 'linux/kernel/printk/console_cmdline.h') diff --git a/linux/kernel/printk/console_cmdline.h b/linux/kernel/printk/console_cmdline.h new file mode 100644 index 00000000..2ca4a8b5 --- /dev/null +++ b/linux/kernel/printk/console_cmdline.h @@ -0,0 +1,14 @@ +#ifndef _CONSOLE_CMDLINE_H +#define _CONSOLE_CMDLINE_H + +struct console_cmdline +{ + char name[16]; /* Name of the driver */ + 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 -- cgit