Infer eeconfig identifiers (#22135)
Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
parent
6720e9c58c
commit
4bbfecae90
3 changed files with 49 additions and 25 deletions
|
@ -22,6 +22,10 @@ void eeprom_update_dword(uint32_t *__p, uint32_t __value);
|
|||
void eeprom_update_block(const void *__src, void *__dst, size_t __n);
|
||||
#endif
|
||||
|
||||
static inline void eeprom_write_qword(uint64_t *__p, uint64_t __value) {
|
||||
eeprom_update_block(&__value, __p, sizeof(uint64_t));
|
||||
}
|
||||
|
||||
#if defined(EEPROM_CUSTOM)
|
||||
# ifndef EEPROM_SIZE
|
||||
# error EEPROM_SIZE has not been defined for custom driver.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue