summaryrefslogtreecommitdiffstats
path: root/include/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/console.h')
-rw-r--r--include/console.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h
index ce3855e1e4..aa2c498cb3 100644
--- a/include/console.h
+++ b/include/console.h
@@ -25,6 +25,7 @@
#define _CONSOLE_H_
#include <param.h>
+#include <list.h>
#define CONSOLE_STDIN (1 << 0)
#define CONSOLE_STDOUT (1 << 1)
@@ -38,7 +39,7 @@ struct console_device {
int (*getc)(struct console_device *cdev);
int (*setbrg)(struct console_device *cdev, int baudrate);
- struct console_device *next;
+ struct list_head list;
unsigned char f_caps;
unsigned char f_active;
@@ -52,6 +53,9 @@ struct console_device {
int console_register(struct console_device *cdev);
+extern struct list_head console_list;
+#define for_each_console(console) list_for_each_entry(console, &console_list, list)
+
#define CFG_PBSIZE (CONFIG_CBSIZE+sizeof(CONFIG_PROMPT)+16)
void early_console_putc(void *base, char c);