Edward O'Callaghan has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/63533 )
Change subject: Revert "Print out the flash chip found after the probing loop in verbose mode" ......................................................................
Revert "Print out the flash chip found after the probing loop in verbose mode"
This reverts commit 1d947633b6ff7a3aaad954e15804fa42d2592023.
Avoid duplicate print lines as this is already done in probe_flash().
Change-Id: Ice20b16c08ab8998f842dce2539ea827d04023a2 Signed-off-by: Edward O'Callaghan quasisec@google.com --- M cli_classic.c 1 file changed, 0 insertions(+), 6 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/33/63533/1
diff --git a/cli_classic.c b/cli_classic.c index 0b6e79c..cda4c9b 100644 --- a/cli_classic.c +++ b/cli_classic.c @@ -666,12 +666,6 @@ } ret = 1; goto out_shutdown; - } else if (!chip_to_probe) { - /* repeat for convenience when looking at foreign logs */ - tempstr = flashbuses_to_text(flashes[0].chip->bustype); - msg_gdbg("Found %s flash chip "%s" (%d kB, %s).\n", - flashes[0].chip->vendor, flashes[0].chip->name, flashes[0].chip->total_size, tempstr); - free(tempstr); }
fill_flash = &flashes[0];