diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-18 17:12:44 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-01-18 17:12:44 +0000 |
commit | 264e84adb835ce9bb7eb5d703417ef2a41c0231d (patch) | |
tree | fa1f980440d9beef73f81381a76e4e40c827cb16 /src/southbridge/via/vt8231 | |
parent | e800b91f38390987756de181f595c5b5492e00b7 (diff) |
fix stupid bug with unitialized conf variable
disable agp slot in config.lb
fix error in setting up com1 == should be TTYS0_BAUD
note that the uart8250 struct is a bad design, but so is the
uart8250 code.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2161 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/via/vt8231')
-rw-r--r-- | src/southbridge/via/vt8231/vt8231_ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/via/vt8231/vt8231_ide.c b/src/southbridge/via/vt8231/vt8231_ide.c index 70f256990c..9f06176cc5 100644 --- a/src/southbridge/via/vt8231/vt8231_ide.c +++ b/src/southbridge/via/vt8231/vt8231_ide.c @@ -8,7 +8,7 @@ static void ide_init(struct device *dev) { - struct southbridge_via_vt8231_config *conf; + struct southbridge_via_vt8231_config *conf = (struct southbridge_via_vt8231_config *)dev->chip_info; unsigned char enables; if (!conf->enable_native_ide) { |