1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

raiden_debug_spi.c: Allow custom_rst param value of 'false'

As identified while documenting driver, allow for passing
'false' even though it is the default for custom_rst to be
consistent.

BUG=b:224358254
TEST=builds

Change-Id: I25bfe6f8e3f7cfffb1a9c99ac90ec56a750d7f84
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/63601
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sam McNally <sammc@google.com>
This commit is contained in:
Edward O'Callaghan 2022-04-13 09:39:54 +10:00 committed by Edward O'Callaghan
parent b01d7e9f51
commit ac2a65cec3

View File

@ -1412,9 +1412,11 @@ static int get_ap_request_type(void)
int ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP; int ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP;
char *custom_rst_str = extract_programmer_param("custom_rst"); char *custom_rst_str = extract_programmer_param("custom_rst");
if (custom_rst_str) { if (custom_rst_str) {
if (!strcasecmp(custom_rst_str, "true")) if (!strcasecmp(custom_rst_str, "true")) {
ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP_CUSTOM; ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP_CUSTOM;
else { } else if (!strcasecmp(custom_rst_str, "false")) {
ap_request = RAIDEN_DEBUG_SPI_REQ_ENABLE_AP;
} else {
msg_perr("Invalid custom rst param: %s\n", msg_perr("Invalid custom rst param: %s\n",
custom_rst_str); custom_rst_str);
ap_request = -1; ap_request = -1;