diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:35:57 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:31 -0500 |
commit | 4c76b552313f3a12a38789afa828c6a7e9e71d7a (patch) | |
tree | 0a488ca5813895fc39097b5c9d12353d6a6a059b | |
parent | c54ecaa965211c3f34004031b3574c069402dc8e (diff) | |
download | u-boot-4c76b552313f3a12a38789afa828c6a7e9e71d7a.tar.gz u-boot-4c76b552313f3a12a38789afa828c6a7e9e71d7a.tar.bz2 u-boot-4c76b552313f3a12a38789afa828c6a7e9e71d7a.zip |
drivers/qe: move the entry to drivers/Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/qe/Makefile | 4 |
3 files changed, 3 insertions, 6 deletions
@@ -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 diff --git a/drivers/Makefile b/drivers/Makefile index 95a4b80724..5d03f37a18 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -13,3 +13,4 @@ obj-y += tpm/ obj-y += twserial/ obj-y += video/ obj-y += watchdog/ +obj-$(CONFIG_QE) += qe/ diff --git a/drivers/qe/Makefile b/drivers/qe/Makefile index b8c15f8e1f..7f1bd06922 100644 --- a/drivers/qe/Makefile +++ b/drivers/qe/Makefile @@ -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 |