[U-Boot] [PATCH 03/38] common: Move pci_target_init() to PPC header
Simon Glass
sjg at chromium.org
Wed May 17 14:22:36 UTC 2017
Only one boards needs this definition. Move it to an arch-specific header.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/powerpc/include/asm/4xx_pci.h | 1 +
include/common.h | 3 ---
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/arch/powerpc/include/asm/4xx_pci.h b/arch/powerpc/include/asm/4xx_pci.h
index f686e7cb07..a68c8756b1 100644
--- a/arch/powerpc/include/asm/4xx_pci.h
+++ b/arch/powerpc/include/asm/4xx_pci.h
@@ -56,5 +56,6 @@ int pci_arbiter_enabled(void);
int __pci_pre_init(struct pci_controller *hose);
void __pci_target_init(struct pci_controller *hose);
void __pci_master_init(struct pci_controller *hose);
+void pci_target_init(struct pci_controller *);
#endif
diff --git a/include/common.h b/include/common.h
index 8d6d1d8d5f..a1f1a9a949 100644
--- a/include/common.h
+++ b/include/common.h
@@ -457,9 +457,6 @@ void pci_init (void);
void pci_init_board(void);
#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
-# if defined(CONFIG_SYS_PCI_TARGET_INIT)
- void pci_target_init (struct pci_controller *);
-# endif
# if defined(CONFIG_SYS_PCI_MASTER_INIT)
void pci_master_init (struct pci_controller *);
# endif
--
2.13.0.303.g4ebf302169-goog
More information about the U-Boot
mailing list