Skip to content

Commit

Permalink
ni845x_spi: Fix signed - unsigned comparisons
Browse files Browse the repository at this point in the history
Change-Id: I48ef927aa28433fb0e3b3a1f3fb2e797095e53bd
Signed-off-by: Miklós Márton <martonmiklosqdev@gmail.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/56637
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
  • Loading branch information
martonmiklos authored and Anastasia Klimchuk committed May 15, 2023
1 parent 42b6346 commit 57f75bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ni845x_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static int ni845x_spi_open(const char *serial, uInt32 *return_handle)

device_pid = pid;

if (!serial || strtol(serial, NULL, 16) == serial_as_number)
if (!serial || strtoul(serial, NULL, 16) == serial_as_number)
break;

if (found_devices_count > 1) {
Expand Down Expand Up @@ -222,7 +222,7 @@ static int usb8452_spi_set_io_voltage(uint16_t requested_io_voltage_mV,
uint16_t *set_io_voltage_mV,
enum voltage_coerce_mode coerce_mode)
{
int i = 0;
unsigned int i = 0;
uint8_t selected_voltage_100mV = 0;
uint8_t requested_io_voltage_100mV = 0;

Expand Down Expand Up @@ -552,9 +552,9 @@ static int ni845x_spi_init(const struct programmer_cfg *cfg)
// read the cs parameter (which Chip select should we use)
CS_str = extract_programmer_param_str(cfg, "cs");
if (CS_str) {
CS_number = CS_str[0] - '0';
CS_number = strtoul(CS_str, NULL, 10);
free(CS_str);
if (strlen(CS_str) > 1 || CS_number < 0 || 7 < CS_number) {
if (CS_number > 7) {
msg_perr("Only CS 0-7 supported\n");
return 1;
}
Expand Down

0 comments on commit 57f75bb

Please sign in to comment.