mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
Makefile: Move drivers/i2c/ into drivers/Makefile
This rule should not be in the top-level Makefile. Now that we have a consistent set of I2C Kconfigs for U-Boot proper, SPL and TPL, we can move it. Make use of the existing SPL/TPL rule in drivers/Makefile instead. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
975e7cf301
commit
537892065a
2 changed files with 0 additions and 5 deletions
1
Makefile
1
Makefile
|
@ -815,7 +815,6 @@ libs-y += disk/
|
|||
libs-y += drivers/
|
||||
libs-y += drivers/dma/
|
||||
libs-y += drivers/gpio/
|
||||
libs-y += drivers/i2c/
|
||||
libs-y += drivers/net/
|
||||
libs-y += drivers/net/phy/
|
||||
libs-y += drivers/power/ \
|
||||
|
|
|
@ -9,11 +9,7 @@ obj-$(CONFIG_$(SPL_TPL_)GPIO) += gpio/
|
|||
obj-$(CONFIG_$(SPL_TPL_)DRIVERS_MISC) += misc/
|
||||
obj-$(CONFIG_$(SPL_TPL_)SYSRESET) += sysreset/
|
||||
obj-$(CONFIG_$(SPL_TPL_)FIRMWARE) +=firmware/
|
||||
|
||||
# This is needed for now, until we drop the i2c/ rule in the top-level Makefile
|
||||
ifdef CONFIG_SPL_BUILD
|
||||
obj-$(CONFIG_$(SPL_TPL_)I2C) += i2c/
|
||||
endif
|
||||
obj-$(CONFIG_$(SPL_TPL_)INPUT) += input/
|
||||
obj-$(CONFIG_$(SPL_TPL_)LED) += led/
|
||||
obj-$(CONFIG_$(SPL_TPL_)MMC_SUPPORT) += mmc/
|
||||
|
|
Loading…
Reference in a new issue