aboutsummaryrefslogtreecommitdiff
path: root/src/include/console
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2016-08-01 06:36:56 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2016-08-02 06:20:53 +0200
commit8c8403ff5f7bab0f6e5c4ccc20e5be0afbca569b (patch)
treeb0f9d0b2bbf422eef7b4f333cf464ab1e896d103 /src/include/console
parentb168db78d6b2e0e2e8d48aea84e336f6dd85a3a5 (diff)
console: Drop leftover struct console_driver
Change-Id: I4d529f6393937e5b97d8546f9348b44a448330e8 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/16007 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/include/console')
-rw-r--r--src/include/console/console.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/include/console/console.h b/src/include/console/console.h
index dcd5fe9cc2..f0ab031582 100644
--- a/src/include/console/console.h
+++ b/src/include/console/console.h
@@ -23,13 +23,6 @@
#include <commonlib/loglevel.h>
#ifndef __ROMCC__
-struct console_driver {
- void (*init)(int);
- void (*tx_byte)(int, unsigned char byte);
- void (*tx_flush)(int);
- unsigned char (*rx_byte)(int);
- int (*tst_byte)(void);
-};
void post_code(u8 value);
#if CONFIG_CMOS_POST_EXTRA