summaryrefslogtreecommitdiff
path: root/linux/kernel/printk/console_cmdline.h
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2016-04-25 10:00:44 -0400
committerMichael J. Chudobiak <mjc@avtechpulse.com>2016-04-25 10:00:44 -0400
commita1df417e74aa6dae7352dc8cbb0ad471af5b7c69 (patch)
treec34b2311e37ea31db153c90cb8f4570374d05e78 /linux/kernel/printk/console_cmdline.h
initial Olimex linux tree from Daniel, originally Feb 3, 2016
Diffstat (limited to 'linux/kernel/printk/console_cmdline.h')
-rw-r--r--linux/kernel/printk/console_cmdline.h14
1 files changed, 14 insertions, 0 deletions
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