diff options
| author | Tim Harvey <[email protected]> | 2021-06-30 17:07:38 -0700 |
|---|---|---|
| committer | Stefano Babic <[email protected]> | 2021-07-10 18:12:42 +0200 |
| commit | c4e565662086170b4d1080800b0c09f0a14a9bde (patch) | |
| tree | 77a743598f374ff375d22d86fef78fe5a263a5e9 | |
| parent | 9fe2106fe0adcbc860e741382790e85e9081d397 (diff) | |
board: gateworks: venice: gsc: fix typo
Fix typo in error message.
Signed-off-by: Tim Harvey <[email protected]>
| -rw-r--r-- | board/gateworks/venice/gsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/gateworks/venice/gsc.c b/board/gateworks/venice/gsc.c index d2490e6063d..23ad58094cd 100644 --- a/board/gateworks/venice/gsc.c +++ b/board/gateworks/venice/gsc.c @@ -176,7 +176,7 @@ static int gsc_read_eeprom(int bus, int slave, int alen, struct venice_board_inf chksum += buf[i]; if ((info->chksum[0] != chksum >> 8) || (info->chksum[1] != (chksum & 0xff))) { - printf("EEPROM: I2C%d@0x%02x: Invalid Model in EEPROM\n", bus, slave); + printf("EEPROM: I2C%d@0x%02x: Invalid Checksum\n", bus, slave); print_hex_dump_bytes("", DUMP_PREFIX_NONE, buf, sizeof(*info)); memset(info, 0, sizeof(*info)); return -EINVAL; |
