mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
88369d33e3
Now that various SPI related options depend on CONFIG_DEPRECATED, in order for platforms to build out of the box they need to disable various other options. Cc: Albert ARIBAUD <albert.aribaud@3adev.fr> Cc: Marek Vasut <marex@denx.de> Cc: Vladimir Zapolskiy <vz@mleia.com> Cc: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Marek Vasut <marek.vasut@gmail.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
11 lines
278 B
Makefile
11 lines
278 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2014 DENX Software Engineering GmbH
|
|
# Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr>
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += work_92105_spl.o
|
|
else
|
|
obj-y += work_92105.o
|
|
obj-$(CONFIG_DEPRECATED) += work_92105_display.o
|
|
endif
|