Просмотр исходного кода

pci: rmobile: Filter out device 1 and 2

Only PCI device 1 and 2 is populated on the R-Car Gen2 internal
PCIe controller. Ignore all other devices. This fix prevents a
duplication of OHCI controller response on slot 0 and 1.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Marek Vasut 6 лет назад
Родитель
Сommit
313360b13f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      drivers/pci/pci-rcar-gen2.c

+ 1 - 1
drivers/pci/pci-rcar-gen2.c

@@ -97,7 +97,7 @@ static int rcar_gen2_pci_addr_valid(pci_dev_t d, uint offset)
 
 	/* Only one EHCI/OHCI device built-in */
 	slot = PCI_DEV(d);
-	if (slot > 2)
+	if (slot != 1 && slot != 2)
 		return -EINVAL;
 
 	/* bridge logic only has registers to 0x40 */