diff options
author | Tim Harvey | 2022-08-11 12:04:01 -0700 |
---|---|---|
committer | Stefano Babic | 2022-10-20 17:35:51 +0200 |
commit | 37d5bf428779fc9f3a11a244e3e145ce9eb77f85 (patch) | |
tree | f857bfad7d6026051e5176ccd97963410c98f693 /board/gateworks/venice | |
parent | b872c93beb3b7ccb3227bff64466d922ae936826 (diff) |
board: gateworks: venice: rename eeprom_init
rename eeprom_init to avoid build failure when using CMD_EEPROM.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'board/gateworks/venice')
-rw-r--r-- | board/gateworks/venice/eeprom.c | 2 | ||||
-rw-r--r-- | board/gateworks/venice/eeprom.h | 2 | ||||
-rw-r--r-- | board/gateworks/venice/spl.c | 2 | ||||
-rw-r--r-- | board/gateworks/venice/venice.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/board/gateworks/venice/eeprom.c b/board/gateworks/venice/eeprom.c index ac52cc0a9ec..6aea60ad05c 100644 --- a/board/gateworks/venice/eeprom.c +++ b/board/gateworks/venice/eeprom.c @@ -299,7 +299,7 @@ static int eeprom_info(bool verbose) return 0; } -int eeprom_init(int quiet) +int venice_eeprom_init(int quiet) { char rev_pcb; int rev_bom; diff --git a/board/gateworks/venice/eeprom.h b/board/gateworks/venice/eeprom.h index 8ea7318d7df..bb7a5fa9ad1 100644 --- a/board/gateworks/venice/eeprom.h +++ b/board/gateworks/venice/eeprom.h @@ -24,7 +24,7 @@ struct venice_board_info { u8 chksum[2]; /* 0x4E */ }; -int eeprom_init(int quiet); +int venice_eeprom_init(int quiet); const char *eeprom_get_model(void); const char *eeprom_get_baseboard_model(void); const char *eeprom_get_dtb_name(int level, char *buf, int len); diff --git a/board/gateworks/venice/spl.c b/board/gateworks/venice/spl.c index 4c0feb4381c..404c4fa4963 100644 --- a/board/gateworks/venice/spl.c +++ b/board/gateworks/venice/spl.c @@ -268,7 +268,7 @@ void board_init_f(ulong dummy) break; mdelay(1); } - dram_sz = eeprom_init(0); + dram_sz = venice_eeprom_init(0); /* PMIC */ power_init_board(); diff --git a/board/gateworks/venice/venice.c b/board/gateworks/venice/venice.c index 32b25ffd3ed..d94f6b8a577 100644 --- a/board/gateworks/venice/venice.c +++ b/board/gateworks/venice/venice.c @@ -111,7 +111,7 @@ int board_phy_config(struct phy_device *phydev) int board_init(void) { - eeprom_init(1); + venice_eeprom_init(1); if (IS_ENABLED(CONFIG_FEC_MXC)) setup_fec(); |