On Fri, Jan 04, 2019 at 04:30:01PM +0100, Thomas Huth wrote: > On 2018-12-27 07:34, Yang Zhong wrote: > > From: Paolo Bonzini <pbonz...@redhat.com> > > > > Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> > > Signed-off-by: Yang Zhong <yang.zh...@intel.com> > > --- > [...] > > diff --git a/hw/display/Kconfig b/hw/display/Kconfig > > index 8ce968bfff..8ddce09ead 100644 > > --- a/hw/display/Kconfig > > +++ b/hw/display/Kconfig > > @@ -24,9 +24,11 @@ config PL110 > > > > config SII9022 > > bool > > + depends on I2C > > > > config SSD0303 > > bool > > + depends on I2C > > > > config SSD0323 > > bool > > @@ -70,6 +72,7 @@ config MILKYMIST_TMU2 > > > > config SM501 > > bool > > + depends on I2C > > > > config TCX > > bool > > I think XLNX_ZYNQMP_ARM likely needs "depends on I2C" nowadays, too ? > > Thomas
Thomas, thanks for comments! Since this is pure ARM's config, we will move this "config XLNX_ZYNQMP_ARM" into ./hw/arm/Kconfig. otehr platforms will be in next steps. thanks! ./hw/arm/Makefile.objs:obj-$(CONFIG_XLNX_ZYNQMP_ARM) += xlnx-zynqmp.o xlnx-zcu102.o ./hw/display/Makefile.objs:obj-$(CONFIG_XLNX_ZYNQMP_ARM) += xlnx_dp.o ./hw/dma/Makefile.objs:obj-$(CONFIG_XLNX_ZYNQMP_ARM) += xlnx_dpdma.o ./hw/dma/Makefile.objs:common-obj-$(CONFIG_XLNX_ZYNQMP_ARM) += xlnx-zdma.o ./default-configs/aarch64-softmmu.mak:CONFIG_XLNX_ZYNQMP_ARM=y Regards, Yang