projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
57afc23
)
powerpc: T4RDB: Compile legacy PCIe routines conditionally
author
Hou Zhiqiang
<Zhiqiang.Hou@nxp.com>
Tue, 27 Aug 2019 11:03:03 +0000
(11:03 +0000)
committer
Prabhakar Kushwaha
<prabhakar.kushwaha@nxp.com>
Wed, 28 Aug 2019 08:17:44 +0000
(13:47 +0530)
Compile the legacy PCIe initialization routines only when
DM_PCI is not enabled.
Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
board/freescale/t4rdb/pci.c
patch
|
blob
|
history
diff --git
a/board/freescale/t4rdb/pci.c
b/board/freescale/t4rdb/pci.c
index 4100370e209a25ecdb59fb4988088584b6f64f29..7d670e1a2f82eddcb045016fec3d69a5c88edc66 100644
(file)
--- a/
board/freescale/t4rdb/pci.c
+++ b/
board/freescale/t4rdb/pci.c
@@
-11,6
+11,7
@@
#include <fdt_support.h>
#include <asm/fsl_serdes.h>
+#if !defined(CONFIG_DM_PCI)
void pci_init_board(void)
{
fsl_pcie_init_board(0);
@@
-20,3
+21,4
@@
void pci_of_setup(void *blob, bd_t *bd)
{
FT_FSL_PCI_SETUP;
}
+#endif