
From: Simon Glass <sjg@chromium.org> This file provide common functions related to QFW, so move it into driver/qfw with the other code. Signed-off-by: Simon Glass <sjg@chromium.org> --- common/Makefile | 2 -- drivers/qfw/Makefile | 2 ++ {common => drivers/qfw}/qfw.c | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {common => drivers/qfw}/qfw.c (100%) diff --git a/common/Makefile b/common/Makefile index 35991562a12..048e4a6b3e2 100644 --- a/common/Makefile +++ b/common/Makefile @@ -99,5 +99,3 @@ obj-$(CONFIG_$(PHASE_)YMODEM_SUPPORT) += xyzModem.o obj-$(CONFIG_$(PHASE_)AVB_VERIFY) += avb_verify.o obj-$(CONFIG_$(PHASE_)STACKPROTECTOR) += stackprot.o obj-$(CONFIG_SCP03) += scp03.o - -obj-$(CONFIG_QFW) += qfw.o diff --git a/drivers/qfw/Makefile b/drivers/qfw/Makefile index 90da78a6cef..95123bdcfac 100644 --- a/drivers/qfw/Makefile +++ b/drivers/qfw/Makefile @@ -4,6 +4,8 @@ # Wolfgang Denk, DENX Software Engineering, wd@denx.de. obj-y += qfw-uclass.o + +obj-y += qfw.o obj-$(CONFIG_QFW_ACPI) += qfw_acpi.o obj-$(CONFIG_QFW_PIO) += qfw_pio.o obj-$(CONFIG_QFW_MMIO) += qfw_mmio.o diff --git a/common/qfw.c b/drivers/qfw/qfw.c similarity index 100% rename from common/qfw.c rename to drivers/qfw/qfw.c -- 2.43.0