summaryrefslogtreecommitdiff
path: root/board_enable.c
diff options
context:
space:
mode:
authormkarcher <mkarcher@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-01-09 23:31:13 +0000
committermkarcher <mkarcher@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2010-01-09 23:31:13 +0000
commitab970e7b149c5dc7373ae354e56da0748151b271 (patch)
tree0a5ec11012cf8a9b27cb158c9c0f9a84a7ef59b1 /board_enable.c
parent07830b93e56a7a2d729116551679f70da049349f (diff)
downloadflashrom-ab970e7b149c5dc7373ae354e56da0748151b271.tar.gz
commit 845 is wrong, as I deleted a wrong line when I wanted to remove
debugging print code. This (hopefully obviously correct) patch fixes the issue. As a previous version (before adding the debugging statement) was already executed on the board, the missing OUTW was executed on the testers machine on an earlier flashrom run. Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> Acked-by: Luc Verhaegen <libv@skynet.be> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@846 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board_enable.c b/board_enable.c
index 7d1730f..2446ddd 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -967,7 +967,7 @@ static int board_msi_651ml(const char *name)
base = pci_read_word(dev, 0x74);
temp = INW(base + 0x68);
temp &= ~(1 << 0); /* Make pin output? */
- printf_debug("changed to %04x\n",temp);
+ OUTW(temp, base + 0x68);
temp = INW(base + 0x64);
temp |= (1 << 0); /* Raise output? */