diff options
author | Ilya Ledvich <ilya@compulab.co.il> | 2014-04-16 13:48:26 +0300 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-23 19:40:39 -0400 |
commit | 39338a30fab2ce7d80dfe0d457071573727f499f (patch) | |
tree | 040a74e4909171810a425dce707f67aeabab0878 /board | |
parent | 1c8c36f57142a13eb03d783ff763391253d654ab (diff) | |
download | u-boot-imx-39338a30fab2ce7d80dfe0d457071573727f499f.zip u-boot-imx-39338a30fab2ce7d80dfe0d457071573727f499f.tar.gz u-boot-imx-39338a30fab2ce7d80dfe0d457071573727f499f.tar.bz2 |
compulab: eeprom: enable any i2c driver
Make the common eeprom library available for any I2C driver.
Signed-off-by: Ilya Ledvich <ilya@compulab.co.il>
Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
Diffstat (limited to 'board')
-rw-r--r-- | board/compulab/common/Makefile | 2 | ||||
-rw-r--r-- | board/compulab/common/eeprom.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/compulab/common/Makefile b/board/compulab/common/Makefile index 6d7d068..4044ac9 100644 --- a/board/compulab/common/Makefile +++ b/board/compulab/common/Makefile @@ -6,5 +6,5 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-$(CONFIG_SYS_I2C_OMAP34XX) += eeprom.o +obj-$(CONFIG_SYS_I2C) += eeprom.o obj-$(CONFIG_LCD) += omap3_display.o diff --git a/board/compulab/common/eeprom.h b/board/compulab/common/eeprom.h index e871629..85d5bf0 100644 --- a/board/compulab/common/eeprom.h +++ b/board/compulab/common/eeprom.h @@ -10,7 +10,7 @@ #ifndef _EEPROM_ #define _EEPROM_ -#ifdef CONFIG_SYS_I2C_OMAP34XX +#ifdef CONFIG_SYS_I2C int cl_eeprom_read_mac_addr(uchar *buf); u32 cl_eeprom_get_board_rev(void); #else |