diff options
author | Marek Vasut <marex@denx.de> | 2015-11-10 20:53:21 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-21 21:50:21 -0500 |
commit | b7b2e3f74887beebc74fecf3a8468e1833351342 (patch) | |
tree | a0361afda06c9afd6ff605f48be9a1dab5b20837 /include/common.h | |
parent | ec7012e3d8f28b38af023739fdf2f40d1f963604 (diff) | |
download | u-boot-b7b2e3f74887beebc74fecf3a8468e1833351342.tar.gz |
eeprom: Zap eeprom_probe()
Remove this function as it's no longer used.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Heiko Schocher <hs@denx.de>
Reviewed-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index e9107300e5..cb35ac8aaa 100644 --- a/include/common.h +++ b/include/common.h @@ -475,9 +475,6 @@ void fdc_hw_init (void); /* $(BOARD)/eeprom.c */ void eeprom_init (void); -#ifndef CONFIG_SPI -int eeprom_probe (unsigned dev_addr, unsigned offset); -#endif int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |