1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-28 07:23:43 +02:00

Add a debug marker after ICH SPI opcode programming

Corresponding to flashrom svn r281 and coreboot v2 svn r3397.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:
Carl-Daniel Hailfinger 2008-06-29 10:57:13 +00:00
parent 7e2c079367
commit 10693353ee

View File

@ -581,9 +581,10 @@ int ich_spi_command(unsigned int writecnt, unsigned int readcnt,
/* program opcodes if not already done */ /* program opcodes if not already done */
if (curopcodes == NULL) { if (curopcodes == NULL) {
printf_debug("Programming OPCODES\n"); printf_debug("Programming OPCODES... ");
curopcodes = &O_ST_M25P; curopcodes = &O_ST_M25P;
program_opcodes(curopcodes); program_opcodes(curopcodes);
printf_debug("done\n");
} }
/* find cmd in opcodes-table */ /* find cmd in opcodes-table */