aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/amd8111
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2006-04-11 18:36:42 +0000
committerStefan Reinauer <stepan@openbios.org>2006-04-11 18:36:42 +0000
commitfbce0ffb92d8665c9cef5cb7be4d9fa6646bd7f2 (patch)
tree20341b6cc9e35d1254350ab49888ba51fceaa413 /src/southbridge/amd/amd8111
parent4b8cf1d30ab195cfc59f777741c2d2126e12ec26 (diff)
small fixes to get Ward Vandewege's Tyan board booting.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2251 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/amd8111')
-rw-r--r--src/southbridge/amd/amd8111/amd8111_pci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/southbridge/amd/amd8111/amd8111_pci.c b/src/southbridge/amd/amd8111/amd8111_pci.c
index b9a9b3578d..6cedc1de94 100644
--- a/src/southbridge/amd/amd8111/amd8111_pci.c
+++ b/src/southbridge/amd/amd8111/amd8111_pci.c
@@ -23,7 +23,8 @@ static void pci_init(struct device *dev)
dword |= (1<<17); /* System */
dword |= (1<<21); /* Master abort */
// dword &= ~(1<<21); /* Master abort */
- dword |= (1<<27); /* Discard timer */
+// dword |= (1<<27); /* Discard timer */
+ dword &= ~(1<<27); /* Discard timer */
dword |= (1<<26); /* DTSTAT error clear */
pci_write_config32(dev, 0x3c, dword);