Re: [U-Boot] [PATCH] drivers: pci: ignore disabled devices

2019-12-05 Thread Tom Rini
On Sun, Dec 01, 2019 at 05:45:18PM +0100, Michael Walle wrote: > PCI devices may be disabled in the device tree. Devices which are probed > by the device tree handle the "status" property and are skipped if > disabled. Devices which are probed by the PCI enumeration don't check > that property.

Re: [U-Boot] [PATCH] drivers: pci: ignore disabled devices

2019-12-02 Thread Bin Meng
On Mon, Dec 2, 2019 at 12:45 AM Michael Walle wrote: > > PCI devices may be disabled in the device tree. Devices which are probed > by the device tree handle the "status" property and are skipped if > disabled. Devices which are probed by the PCI enumeration don't check > that property. Fix it. >

Re: [U-Boot] [PATCH] drivers: pci: ignore disabled devices

2019-12-02 Thread Alexandru Marginean
On 12/1/2019 5:45 PM, Michael Walle wrote: PCI devices may be disabled in the device tree. Devices which are probed by the device tree handle the "status" property and are skipped if disabled. Devices which are probed by the PCI enumeration don't check that property. Fix it. Signed-off-by:

[U-Boot] [PATCH] drivers: pci: ignore disabled devices

2019-12-01 Thread Michael Walle
PCI devices may be disabled in the device tree. Devices which are probed by the device tree handle the "status" property and are skipped if disabled. Devices which are probed by the PCI enumeration don't check that property. Fix it. Signed-off-by: Michael Walle --- drivers/pci/pci-uclass.c | 5