diff options
author | Valentin Longchamp <valentin.longchamp@keymile.com> | 2015-02-10 17:10:18 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-02-16 15:48:36 -0500 |
commit | 60c4ae00be11f07a9b60f95e76538785062f873b (patch) | |
tree | 0203e197a827600c7b62b631930d091700e8d843 /board/keymile/common/common.h | |
parent | 2973b098baf6fcb49d9fb7a2ed187e6a65532175 (diff) | |
download | u-boot-60c4ae00be11f07a9b60f95e76538785062f873b.tar.gz |
KM/IVM: remove ivm_read_eeprom(void)
This is not used anymore since the procedure was split into a simple
read function and a later alaysis.
The ivm_read_eeprom name is now used for the previous
ivm_simple_read_eeprom function.
Signed-off-by: Valentin Longchamp <valentin.longchamp@keymile.com>
Diffstat (limited to 'board/keymile/common/common.h')
-rw-r--r-- | board/keymile/common/common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/board/keymile/common/common.h b/board/keymile/common/common.h index 7e16d2570b..dcfefc46b3 100644 --- a/board/keymile/common/common.h +++ b/board/keymile/common/common.h @@ -126,8 +126,7 @@ struct bfticu_iomap { #endif int ethernet_present(void); -int ivm_read_eeprom(void); -int ivm_simple_read_eeprom(unsigned char *buf, int len); +int ivm_read_eeprom(unsigned char *buf, int len); int ivm_analyze_eeprom(unsigned char *buf, int len); int trigger_fpga_config(void); |