diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-10-24 14:42:12 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-10-24 14:42:12 +0000 |
commit | bf873e4ae3e95e92c829cfec1d1efacbd25ba7ea (patch) | |
tree | 52ff4ec15a4715ec4d8dd7810beb595192c0fc55 /src/console/vga_console.c | |
parent | 50542a884b13e47b28b97147def60617267ff8ff (diff) | |
download | coreboot-bf873e4ae3e95e92c829cfec1d1efacbd25ba7ea.tar.xz |
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
Diffstat (limited to 'src/console/vga_console.c')
-rw-r--r-- | src/console/vga_console.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/vga_console.c b/src/console/vga_console.c index e9756c8996..a93e2a34f7 100644 --- a/src/console/vga_console.c +++ b/src/console/vga_console.c @@ -106,7 +106,7 @@ static void vga_tx_byte(unsigned char byte) write_crtc((vga_col + (vga_line *COLS)) & 0x0ff, CRTC_CURSOR_LO); } -static struct console_driver vga_console __console ={ +static const struct console_driver vga_console __console ={ .init = 0, .tx_byte = vga_tx_byte, .rx_byte = 0, |