aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/boot/coreboot_table.c
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2008-06-29 06:41:12 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2008-06-29 06:41:12 +0000
commitc2e8fd42b0f2d411d00893aa6e697685e345e9e6 (patch)
treec1899f0ab94c0ea43a92696180854b0ee998040c /src/arch/i386/boot/coreboot_table.c
parent891f1a2650c5b32c65103fa9a5659953fab34157 (diff)
Adds a field to the serial port descriptor about the configured line speed.
Signed-Off-By: Patrick Georgi <patrick@georgi-clan.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3396 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/i386/boot/coreboot_table.c')
-rw-r--r--src/arch/i386/boot/coreboot_table.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/i386/boot/coreboot_table.c b/src/arch/i386/boot/coreboot_table.c
index 0ba09e7215..9dd6a3299a 100644
--- a/src/arch/i386/boot/coreboot_table.c
+++ b/src/arch/i386/boot/coreboot_table.c
@@ -84,6 +84,7 @@ struct lb_serial *lb_serial(struct lb_header *header)
serial->tag = LB_TAG_SERIAL;
serial->size = sizeof(*serial);
serial->ioport = TTYS0_BASE;
+ serial->baud = TTYS0_BAUD;
return serial;
#else
return header;