Kyösti Mälkki (kyosti.malkki@gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16007
-gerrit
commit e73f9e52eb035b4696ff6810056220512cb97b4c Author: Kyösti Mälkki kyosti.malkki@gmail.com Date: Mon Aug 1 06:36:56 2016 +0300
console: Drop leftover struct console_driver
Change-Id: I4d529f6393937e5b97d8546f9348b44a448330e8 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- src/include/console/console.h | 7 ------- 1 file changed, 7 deletions(-)
diff --git a/src/include/console/console.h b/src/include/console/console.h index ddb5c052..c93fe4e 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -22,13 +22,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