• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision678fa113708cfddc8083faa184cf9eabcf05e7fe (tree)
l'heure2016-04-17 19:24:47
AuteurYoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Message de Log

pci: Device scanning range fix.

Don't lookup pci device 1f.7

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

Change Summary

Modification

--- a/drivers/pci/pci-uclass.c
+++ b/drivers/pci/pci-uclass.c
@@ -682,7 +682,7 @@ int pci_bind_bus_devices(struct udevice *bus)
682682 found_multi = false;
683683 end = PCI_BDF(bus->seq, PCI_MAX_PCI_DEVICES - 1,
684684 PCI_MAX_PCI_FUNCTIONS - 1);
685- for (bdf = PCI_BDF(bus->seq, 0, 0); bdf < end;
685+ for (bdf = PCI_BDF(bus->seq, 0, 0); bdf <= end;
686686 bdf += PCI_BDF(0, 0, 1)) {
687687 struct pci_child_platdata *pplat;
688688 struct udevice *dev;