rpmsg configuration selects VIRTIO, but VIRTIO is now subordinate to VIRTUALIZATION. RPMSG is currently selected by OMAP_REMOTEPROC, and the dependency warning is not seen with the fix in remoteproc config, but the kconfig menu hierarchy dependency has to be honored nevertheless. warning: (VIRTIO_PCI && VIRTIO_MMIO && REMOTEPROC && RPMSG) selects VIRTIO which has unmet direct dependencies (VIRTUALIZATION) warning: (VIRTIO_PCI && VIRTIO_MMIO && REMOTEPROC && RPMSG) selects VIRTIO which has unmet direct dependencies (VIRTUALIZATION) Signed-off-by: Suman Anna <s-anna at ti.com> --- drivers/rpmsg/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/rpmsg/Kconfig b/drivers/rpmsg/Kconfig index f6e0ea6..370645c 100644 --- a/drivers/rpmsg/Kconfig +++ b/drivers/rpmsg/Kconfig @@ -3,6 +3,7 @@ menu "Rpmsg drivers" # RPMSG always gets selected by whoever wants it config RPMSG tristate + select VIRTUALIZATION select VIRTIO endmenu -- 1.8.2
Ohad Ben-Cohen
2013-Apr-21 13:56 UTC
[PATCH 2/2] rpmsg: fix kconfig dependencies for VIRTIO
On Tue, Apr 16, 2013 at 8:25 PM, Suman Anna <s-anna at ti.com> wrote:> rpmsg configuration selects VIRTIO, but VIRTIO is now > subordinate to VIRTUALIZATION. RPMSG is currently selected > by OMAP_REMOTEPROC, and the dependency warning is not seen > with the fix in remoteproc config, but the kconfig menu > hierarchy dependency has to be honored nevertheless. > > warning: (VIRTIO_PCI && VIRTIO_MMIO && REMOTEPROC && RPMSG) selects VIRTIO which has unmet direct dependencies (VIRTUALIZATION) > warning: (VIRTIO_PCI && VIRTIO_MMIO && REMOTEPROC && RPMSG) selects VIRTIO which has unmet direct dependencies (VIRTUALIZATION) > > Signed-off-by: Suman Anna <s-anna at ti.com>Applied, thanks!