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
diff --git a/src/arch/i386/boot/coreboot_table.c b/src/arch/i386/boot/coreboot_table.c
index 0ba09e7..9dd6a32 100644
--- a/src/arch/i386/boot/coreboot_table.c
+++ b/src/arch/i386/boot/coreboot_table.c
@@ -84,6 +84,7 @@
 	serial->tag = LB_TAG_SERIAL;
 	serial->size = sizeof(*serial);
 	serial->ioport = TTYS0_BASE;
+	serial->baud = TTYS0_BAUD;
 	return serial;
 #else
 	return header;