CR50: fix bug in rom_flash.c debug print message

BRANCH=none
BUG=chrome-os-partner:43025
TEST=build succeeds

Change-Id: Ieecf5072f821ec65f308604f9153c938ee08620a
Signed-off-by: nagendra modadugu <ngm@google.com>
Reviewed-on: https://chromium-review.googlesource.com/351332
Commit-Ready: Nagendra Modadugu <ngm@google.com>
Tested-by: Nagendra Modadugu <ngm@google.com>
Reviewed-by: Bill Richardson <wfrichar@chromium.org>
This commit is contained in:
nagendra modadugu
2016-06-09 13:15:49 -07:00
committed by chrome-bot
parent a80d840509
commit 5cd47907a0

View File

@@ -14,9 +14,10 @@ static int _flash_error(void)
if (!retval)
return 0;
debug_printf("Register FLASH_FSH_ERROR is not zero (found %x).\n");
debug_printf("Register FLASH_FSH_ERROR is not zero (found %x).\n",
retval);
debug_printf("Will read again to verify FSH_ERROR was cleared ");
debug_printf("and then continue...\n", retval);
debug_printf("and then continue...\n");
retval = GREG32(FLASH, FSH_ERROR);
if (retval) {