Another CONSTification...
[coreboot.git] / src / console / logbuf_console.c
index 00185d383cca3d5866e4b50298d43e627125d9b8..3b6c7445035317b03b1d79bed3c476c67f583994 100644 (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,