diff options
| author | Tom Rini <[email protected]> | 2023-05-08 09:10:39 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-05-08 09:10:39 -0400 |
| commit | fbfe7fb5aed4983af28abbab8fda94c67315cb34 (patch) | |
| tree | 5c196a3493503ff0ca1ef1dad14328df5def354f /include | |
| parent | 1917a1a8a8bad28170cd464e5ea61ff0d738310b (diff) | |
| parent | fa0af90a0ebd3557490640798ea4f5fad211d382 (diff) | |
Merge https://source.denx.de/u-boot/custodians/u-boot-marvell
- cmd: tlv_eeprom: Misc cleanups & improvements (Josua)
Diffstat (limited to 'include')
| -rw-r--r-- | include/tlv_eeprom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/tlv_eeprom.h b/include/tlv_eeprom.h index a2c333e7446..fd45e5f6ebb 100644 --- a/include/tlv_eeprom.h +++ b/include/tlv_eeprom.h @@ -84,11 +84,12 @@ int read_tlv_eeprom(void *eeprom, int offset, int len, int dev); * write_tlv_eeprom - Write the entire EEPROM binary data to the hardware * @eeprom: Pointer to buffer to hold the binary data * @len : Maximum size of buffer + * @dev : EEPROM device to write * * Note: this routine does not validate the EEPROM data. * */ -int write_tlv_eeprom(void *eeprom, int len); +int write_tlv_eeprom(void *eeprom, int len, int dev); /** * read_tlvinfo_tlv_eeprom - Read the TLV from EEPROM, and validate |
