mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-19 17:53:08 +00:00
69d9eda4da
It is quite confusing that CONFIG_SYS_I2C selects the legacy I2C and CONFIG_DM_I2C selects the current I2C. The deadline to migrate I2C is less than a year away. Also we want to have a CONFIG_I2C for U-Boot proper just like we have CONFIG_SPL_I2C for SPL, so we can simplify the Makefile rules. Rename this symbol so it is clear it is going away. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Heiko Schocher <hs@denx.de>
10 lines
298 B
Makefile
10 lines
298 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>
|
|
|
|
obj-y += common.o
|
|
obj-$(CONFIG_SYS_I2C_LEGACY) += eeprom.o
|
|
obj-$(CONFIG_LCD) += omap3_display.o
|
|
obj-$(CONFIG_SMC911X) += omap3_smc911x.o
|