mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
drivers/qe: move the entry to drivers/Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
c54ecaa965
commit
4c76b55231
3 changed files with 3 additions and 6 deletions
4
Makefile
4
Makefile
|
@ -271,11 +271,7 @@ LIBS-y += drivers/power/libpower.o \
|
|||
drivers/power/pmic/libpmic.o \
|
||||
drivers/power/battery/libbattery.o
|
||||
LIBS-y += drivers/spi/libspi.o
|
||||
ifeq ($(CPU),mpc83xx)
|
||||
LIBS-y += drivers/qe/libqe.o
|
||||
endif
|
||||
ifeq ($(CPU),mpc85xx)
|
||||
LIBS-y += drivers/qe/libqe.o
|
||||
LIBS-y += drivers/net/fm/libfm.o
|
||||
endif
|
||||
LIBS-y += drivers/serial/libserial.o
|
||||
|
|
|
@ -13,3 +13,4 @@ obj-y += tpm/
|
|||
obj-y += twserial/
|
||||
obj-y += video/
|
||||
obj-y += watchdog/
|
||||
obj-$(CONFIG_QE) += qe/
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-$(and $(CONFIG_QE),$(CONFIG_OF_LIBFDT)) += fdt.o
|
||||
obj-$(CONFIG_QE) += qe.o uccf.o uec.o uec_phy.o
|
||||
obj-y := qe.o uccf.o uec.o uec_phy.o
|
||||
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
||||
|
|
Loading…
Reference in a new issue