From 1bb5ddde6048b9819d18082f71640c007c911f2a Mon Sep 17 00:00:00 2001 From: Chinmay Lonkar Date: Tue, 28 Jun 2022 21:44:04 +0530 Subject: Add `str` extension to extract_programmer_param function name This patch changes the function name of extract_programmer_param() to extract_programmer_param_str() as this function name will clearly specify that it returns the value of the given parameter as a string. Signed-off-by: Chinmay Lonkar Change-Id: Id7b9fff4d3e1de22abd31b8123a1d237cd0f5c97 Reviewed-on: https://review.coreboot.org/c/flashrom/+/65521 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer Reviewed-by: Thomas Heijligen --- rayer_spi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rayer_spi.c') diff --git a/rayer_spi.c b/rayer_spi.c index 94e957e1..3d626b2e 100644 --- a/rayer_spi.c +++ b/rayer_spi.c @@ -244,7 +244,7 @@ static int rayer_spi_init(void) uint8_t lpt_outbyte; /* Non-default port requested? */ - arg = extract_programmer_param("iobase"); + arg = extract_programmer_param_str("iobase"); if (arg) { char *endptr = NULL; unsigned long tmp; @@ -277,7 +277,7 @@ static int rayer_spi_init(void) msg_pdbg("Using address 0x%x as I/O base for parallel port access.\n", lpt_iobase); - arg = extract_programmer_param("type"); + arg = extract_programmer_param_str("type"); if (arg) { for (; prog->type != NULL; prog++) { if (strcasecmp(arg, prog->type) == 0) { -- cgit v1.2.3