diff options
author | Hou Zhiqiang <Zhiqiang.Hou@nxp.com> | 2019-04-22 21:50:34 +0800 |
---|---|---|
committer | Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> | 2019-06-20 10:44:10 +0530 |
commit | 82c47a21e7ff3a2374328f75f4441ca750426d5b (patch) | |
tree | dfc74250bf3ab718d2231576916e63f4aa4614f3 | |
parent | 2b12f6cfe6239d8b6b8c5e7b0c5b5851f7bc489a (diff) | |
download | u-boot-82c47a21e7ff3a2374328f75f4441ca750426d5b.zip u-boot-82c47a21e7ff3a2374328f75f4441ca750426d5b.tar.gz u-boot-82c47a21e7ff3a2374328f75f4441ca750426d5b.tar.bz2 |
powerpc: mpc85xx: Update the condition to compile PCI routines
Compile the routines of mpc85xx/pci.c when both FSL_PCI_INIT
and DM_PCI are not enabled.
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/pci.c b/arch/powerpc/cpu/mpc85xx/pci.c index 90ccc34..1d0213a 100644 --- a/arch/powerpc/cpu/mpc85xx/pci.c +++ b/arch/powerpc/cpu/mpc85xx/pci.c @@ -12,7 +12,7 @@ #include <asm/cpm_85xx.h> #include <pci.h> -#if !defined(CONFIG_FSL_PCI_INIT) +#if !defined(CONFIG_FSL_PCI_INIT) && !defined(CONFIG_DM_PCI) #ifndef CONFIG_SYS_PCI1_MEM_BUS #define CONFIG_SYS_PCI1_MEM_BUS CONFIG_SYS_PCI1_MEM_BASE |