Quellcode durchsuchen

x86/PCI: Use dev_is_pci() to identify PCI devices

Use dev_is_pci() instead of checking bus type directly.

Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Yijing Wang vor 11 Jahren
Ursprung
Commit
894d334378
1 geänderte Dateien mit 1 neuen und 3 gelöschten Zeilen
  1. 1 3
      arch/x86/kernel/acpi/boot.c

+ 1 - 3
arch/x86/kernel/acpi/boot.c

@@ -1034,9 +1034,7 @@ static int mp_config_acpi_gsi(struct device *dev, u32 gsi, int trigger,
 
 	if (!acpi_ioapic)
 		return 0;
-	if (!dev)
-		return 0;
-	if (dev->bus != &pci_bus_type)
+	if (!dev || !dev_is_pci(dev))
 		return 0;
 
 	pdev = to_pci_dev(dev);