Author: mkarcher
Date: 2010-01-10 00:31:13 +0100 (Sun, 10 Jan 2010)
New Revision: 846

Modified:
   trunk/board_enable.c
Log:
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 <[email protected]>
Acked-by: Luc Verhaegen <[email protected]>



Modified: trunk/board_enable.c
===================================================================
--- trunk/board_enable.c        2010-01-09 17:36:06 UTC (rev 845)
+++ trunk/board_enable.c        2010-01-09 23:31:13 UTC (rev 846)
@@ -967,7 +967,7 @@
        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? */


_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom

Reply via email to