mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 06:24:17 +00:00

Conversion to DM_I2C is mandatory, enable DM_I2C to fix board removal warning. Convert EEPROM access to use DM_I2C API. Signed-off-by: Anatolij Gustschin <agust@denx.de> Reviewed-by: Fabio Estevam <festevam@gmail.com>
15 lines
309 B
Makefile
15 lines
309 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2011 - 2013 CompuLab, Ltd. <www.compulab.co.il>
|
|
#
|
|
# Author: Igor Grinberg <grinberg@compulab.co.il>
|
|
|
|
CL_EEPROM=y
|
|
|
|
ifdef CONFIG_TARGET_TRIMSLICE
|
|
CL_EEPROM=
|
|
endif
|
|
|
|
obj-y += common.o
|
|
obj-$(CL_EEPROM) += eeprom.o
|
|
obj-$(CONFIG_SMC911X) += omap3_smc911x.o
|