aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2008-06-29 10:57:13 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2008-06-29 10:57:13 +0000
commit7b425c1c1115f258107bad368a1b1f7345a7254b (patch)
tree105276d1864cc4d01d3418b1cd0189dffb5e59d4 /util
parentc2e8fd42b0f2d411d00893aa6e697685e345e9e6 (diff)
Add a debug marker after ICH SPI opcode programming.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3397 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r--util/flashrom/ichspi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/flashrom/ichspi.c b/util/flashrom/ichspi.c
index b6b0f36fd6..7cc9ca7433 100644
--- a/util/flashrom/ichspi.c
+++ b/util/flashrom/ichspi.c
@@ -581,9 +581,10 @@ int ich_spi_command(unsigned int writecnt, unsigned int readcnt,
/* program opcodes if not already done */
if (curopcodes == NULL) {
- printf_debug("Programming OPCODES\n");
+ printf_debug("Programming OPCODES... ");
curopcodes = &O_ST_M25P;
program_opcodes(curopcodes);
+ printf_debug("done\n");
}
/* find cmd in opcodes-table */