1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00
Files
u-boot-megous/include
Rasmus Villemoes 682fef9ff6 include/eeprom.h: fix build errors
CMD_EEPROM and ENV_IS_IN_EEPROM can be selected independently, and
cmd/eeprom.o gets built in either case, so whether to declare the real
prototypes needs to follow the same logic as whether cmd/eeprom.c is
built. Otherwise a ENV_IS_IN_EEPROM=y, CMD_EEPROM=n build fails

cmd/eeprom.c:73:1: error: expected identifier or ‘(’ before ‘{’ token
 {

While at it, fix the dummy replacements (at least assuming they are
meant to allow the code to compile) - they need to have the same type
as the expression they replace, or one gets errors such as

env/eeprom.c: In function ‘eeprom_bus_read’:
env/eeprom.c:37:8: error: void value not ignored as it ought to be
  rcode = eeprom_read(dev_addr, offset, buffer, cnt);

Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Reviewed-by: Tom Rini <trini@konsulko.com>
2020-05-07 09:01:42 -04:00
..
2020-04-17 12:32:36 -04:00
2020-04-30 17:16:12 +08:00
2020-04-16 14:36:28 +08:00
2020-05-07 09:01:42 -04:00
2020-04-29 11:10:54 +05:30
2020-05-02 12:32:28 +02:00
2020-04-30 17:40:16 +08:00
2020-04-17 12:32:36 -04:00
2020-03-09 18:11:23 -05:00
2020-04-30 10:25:07 +02:00
2020-04-27 13:53:13 +02:00
2020-04-16 14:36:28 +08:00
2020-04-24 16:40:09 -04:00