diff options
author | Stefan Reinauer <stepan@openbios.org> | 2004-01-14 15:46:30 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2004-01-14 15:46:30 +0000 |
commit | fd1f22cfeff3da84189aff8da95ac0a8a7c3fa53 (patch) | |
tree | 6e161ddc4c6f249906247f5775747dc7ef425d70 /src | |
parent | 8d0ac932cb5c80514856d1f17623f4c78abfd82c (diff) | |
download | coreboot-fd1f22cfeff3da84189aff8da95ac0a8a7c3fa53.tar.xz |
small fixes
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1331 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/amd/amdk8/misc_control.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/northbridge/amd/amdk8/misc_control.c b/src/northbridge/amd/amdk8/misc_control.c index 9d4e968267..19e7c58ea4 100644 --- a/src/northbridge/amd/amdk8/misc_control.c +++ b/src/northbridge/amd/amdk8/misc_control.c @@ -15,6 +15,8 @@ static void misc_control_init(struct device *dev) uint32_t cmd; printk_debug("NB: Function 3 Misc Control.. "); + + /* disable error reporting */ cmd = pci_read_config32(dev, 0x44); cmd |= (1<<6) | (1<<25); pci_write_config32(dev, 0x44, cmd ); |