From: Mario Six Date: Fri, 27 Apr 2018 12:53:37 +0000 (+0200) Subject: pci: Don't use pci_indirect when DM is active X-Git-Tag: v2018.07-rc1~184 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e097ce4304056452704f54245e28a6badb59fe06;p=platform%2Fkernel%2Fu-boot.git pci: Don't use pci_indirect when DM is active 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 Reviewed-by: Simon Glass --- diff --git a/drivers/pci/pci_indirect.c b/drivers/pci/pci_indirect.c index a24100e..6134c22 100644 --- a/drivers/pci/pci_indirect.c +++ b/drivers/pci/pci_indirect.c @@ -7,7 +7,7 @@ #include -#if !defined(__I386__) +#if !defined(__I386__) && !defined(CONFIG_DM_PCI) #include #include