Message ID | 20170718142455.32676-10-cohuck@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 18.07.2017 16:24, Cornelia Huck wrote: > VIRTIO_PCI should properly depend on CONFIG_PCI. > With this change, we can switch off pci for s390x by removing > 'CONFIG_PCI=y' from the default config. > > Signed-off-by: Cornelia Huck <cohuck@redhat.com> > --- > default-configs/s390x-softmmu.mak | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/default-configs/s390x-softmmu.mak b/default-configs/s390x-softmmu.mak > index b227a36179..7adaa4a4fe 100644 > --- a/default-configs/s390x-softmmu.mak > +++ b/default-configs/s390x-softmmu.mak > @@ -1,5 +1,5 @@ > CONFIG_PCI=y > -CONFIG_VIRTIO_PCI=y > +CONFIG_VIRTIO_PCI=$(CONFIG_PCI) > CONFIG_VHOST_USER_SCSI=$(CONFIG_LINUX) > CONFIG_VIRTIO=y > CONFIG_SCLPCONSOLE=y Reviewed-by: Thomas Huth <thuth@redhat.com>
diff --git a/default-configs/s390x-softmmu.mak b/default-configs/s390x-softmmu.mak index b227a36179..7adaa4a4fe 100644 --- a/default-configs/s390x-softmmu.mak +++ b/default-configs/s390x-softmmu.mak @@ -1,5 +1,5 @@ CONFIG_PCI=y -CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI=$(CONFIG_PCI) CONFIG_VHOST_USER_SCSI=$(CONFIG_LINUX) CONFIG_VIRTIO=y CONFIG_SCLPCONSOLE=y
VIRTIO_PCI should properly depend on CONFIG_PCI. With this change, we can switch off pci for s390x by removing 'CONFIG_PCI=y' from the default config. Signed-off-by: Cornelia Huck <cohuck@redhat.com> --- default-configs/s390x-softmmu.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)