summary refs log tree commit diff stats
path: root/hw
diff options
context:
space:
mode:
authorTomita Moeko <tomitamoeko@gmail.com>2024-12-06 20:27:40 +0800
committerCédric Le Goater <clg@redhat.com>2024-12-26 07:23:37 +0100
commit8492a6129c3c581cd6f94a0c11e9c4c5ebbac9dc (patch)
treefdaeb2b227cc00a9372faee66db7281dc195088f /hw
parent03828b00a2bfa14fb70a423b811b57d463842622 (diff)
downloadfocaccia-qemu-8492a6129c3c581cd6f94a0c11e9c4c5ebbac9dc.tar.gz
focaccia-qemu-8492a6129c3c581cd6f94a0c11e9c4c5ebbac9dc.zip
vfio/igd: remove unsupported device ids
Since e433f208973f ("vfio/igd: return an invalid generation for unknown
devices"), the default return of igd_gen() was changed to unsupported.
There is no need to filter out those unsupported devices.

Reviewed-by: Alex Williamson <alex.williamson@redhat.com>
Reviewed-by: Corvin Köhne <c.koehne@beckhoff.com>
Signed-off-by: Tomita Moeko <tomitamoeko@gmail.com>
Link: https://lore.kernel.org/r/20241206122749.9893-3-tomitamoeko@gmail.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/vfio/igd.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/hw/vfio/igd.c b/hw/vfio/igd.c
index 73ed1ec8e6..059ed56439 100644
--- a/hw/vfio/igd.c
+++ b/hw/vfio/igd.c
@@ -64,16 +64,6 @@ static int igd_gen(VFIOPCIDevice *vdev)
     }
 
     switch (vdev->device_id & 0xff00) {
-    /* Old, untested, unavailable, unknown */
-    case 0x0000:
-    case 0x2500:
-    case 0x2700:
-    case 0x2900:
-    case 0x2a00:
-    case 0x2e00:
-    case 0x3500:
-    case 0xa000:
-        return -1;
     /* SandyBridge, IvyBridge, ValleyView, Haswell */
     case 0x0100:
     case 0x0400: