summaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2006-01-18 17:12:44 +0000
committerRonald G. Minnich <rminnich@gmail.com>2006-01-18 17:12:44 +0000
commit264e84adb835ce9bb7eb5d703417ef2a41c0231d (patch)
treefa1f980440d9beef73f81381a76e4e40c827cb16 /src/southbridge
parente800b91f38390987756de181f595c5b5492e00b7 (diff)
downloadcoreboot-264e84adb835ce9bb7eb5d703417ef2a41c0231d.tar.xz
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')
-rw-r--r--src/southbridge/via/vt8231/vt8231_ide.c2
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) {