Commit 0d818706 authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

virtio: don't fail on !of_device_is_compatible



A recent change checking of_device_is_compatible on probe broke some
powerpc/pseries setups. Apparently there virtio devices do not have a
"compatible" property - they are matched by PCI vendor/device ids.

Let's just skip of_node setup but proceed with initialization like we
did previously.

Fixes: 694a1116 ("virtio: Bind virtio device to device-tree node")
Reported-by: default avatarAlexey Kardashevskiy <aik@ozlabs.ru>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Tested-by: default avatarGuenter Roeck <linux@roeck-us.net>
Acked-by: default avatarJason Wang <jasowang@redhat.com>
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent 6880fa6c
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -345,8 +345,13 @@ static int virtio_device_of_init(struct virtio_device *dev)
	ret = snprintf(compat, sizeof(compat), "virtio,device%x", dev->id.device);
	BUG_ON(ret >= sizeof(compat));

	/*
	 * On powerpc/pseries virtio devices are PCI devices so PCI
	 * vendor/device ids play the role of the "compatible" property.
	 * Simply don't init of_node in this case.
	 */
	if (!of_device_is_compatible(np, compat)) {
		ret = -EINVAL;
		ret = 0;
		goto out;
	}