diff options
author | Tom Rini <trini@konsulko.com> | 2024-01-25 11:01:38 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-01-25 11:01:38 -0500 |
commit | e7f9e5eb584dd0b5d1b1ff82fe607d6da9940cc6 (patch) | |
tree | 5d78cc0c1339a9d7196876aa029f6e94ca247e72 /board/ti/common/board_detect.c | |
parent | 15e7927b5a2d33666af19879577bf0c30ab088fe (diff) | |
parent | 53c3e386063b9e1ab955d4658a035f1eea8a1cc0 (diff) |
Merge branch '2024-01-24-assorted-fixes-and-updates'
- Increase SYS_MAXARGS default, verdin-am62 improvements (and required
cleanup), assorted cleanups throughout the code base.
Diffstat (limited to 'board/ti/common/board_detect.c')
-rw-r--r-- | board/ti/common/board_detect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/ti/common/board_detect.c b/board/ti/common/board_detect.c index 0ec6d1aaf4c..38e23ccbb67 100644 --- a/board/ti/common/board_detect.c +++ b/board/ti/common/board_detect.c @@ -129,7 +129,7 @@ static int __maybe_unused ti_i2c_eeprom_get(int bus_addr, int dev_addr, rc = dm_i2c_read(dev, 0x1, &offset_test, sizeof(offset_test)); - if (*((u32 *)ep) != (header & 0xFF)) + if (offset_test != ((header >> 8) & 0xFF)) one_byte_addressing = false; /* Corrupted data??? */ @@ -181,7 +181,7 @@ static int __maybe_unused ti_i2c_eeprom_get(int bus_addr, int dev_addr, rc = i2c_read(dev_addr, 0x1, byte, &offset_test, sizeof(offset_test)); - if (*((u32 *)ep) != (header & 0xFF)) + if (offset_test != ((header >> 8) & 0xFF)) one_byte_addressing = false; /* Corrupted data??? */ |