
27 Apr
2018
27 Apr
'18
2:53 p.m.
Declaration of indirect PCI bridges is not compatible with DM: Both define PCI operations, but in different ways. Hence, don't use indirect bridges if DM is active.
Signed-off-by: Mario Six mario.six@gdsys.cc Reviewed-by: Simon Glass sjg@chromium.org ---
v1 -> v2: No changes
--- drivers/pci/pci_indirect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/pci_indirect.c b/drivers/pci/pci_indirect.c index 4a36749aa4..2db73f92de 100644 --- a/drivers/pci/pci_indirect.c +++ b/drivers/pci/pci_indirect.c @@ -8,7 +8,7 @@
#include <common.h>
-#if !defined(__I386__) +#if !defined(__I386__) && !defined(CONFIG_DM_PCI)
#include <asm/processor.h> #include <asm/io.h>
--
2.16.1