Another CONSTification...

(trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2895 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2007-10-24 14:42:12 +00:00
committed by Stefan Reinauer
parent 50542a884b
commit bf873e4ae3
5 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ static void logbuf_tx_byte(unsigned char byte)
logbuf_offset = (logbuf_offset +1) % LOGBUF_SIZE;
}
static struct console_driver __console = {
static const struct console_driver __console = {
.init = 0,
.tx_byte = logbuf_tx_byte,
.rx_byte = 0,