diff mbox

[U-Boot,05/38] common: Move pcie_setup_hoses() to PPC header

Message ID 20170517142311.29484-6-sjg@chromium.org
State Accepted
Commit 58a8ec4cc0475d24368c21ab70d0eff78da1aafd
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass May 17, 2017, 2:22 p.m. UTC
Only one board needs this definition. Move it to an arch-specific header.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/powerpc/include/asm/4xx_pci.h | 1 +
 include/common.h                   | 8 --------
 2 files changed, 1 insertion(+), 8 deletions(-)

Comments

Tom Rini June 6, 2017, 12:17 a.m. UTC | #1
On Wed, May 17, 2017 at 08:22:38AM -0600, Simon Glass wrote:

> Only one board needs this definition. Move it to an arch-specific header.
> 
> Signed-off-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/arch/powerpc/include/asm/4xx_pci.h b/arch/powerpc/include/asm/4xx_pci.h
index a68c8756b1..276a78077d 100644
--- a/arch/powerpc/include/asm/4xx_pci.h
+++ b/arch/powerpc/include/asm/4xx_pci.h
@@ -57,5 +57,6 @@  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 *);
+void pcie_setup_hoses(int busno);
 
 #endif
diff --git a/include/common.h b/include/common.h
index 7f9b7863b1..6dd0d2f552 100644
--- a/include/common.h
+++ b/include/common.h
@@ -456,14 +456,6 @@  int get_env_id (void);
 void	pci_init      (void);
 void	pci_init_board(void);
 
-#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
-#if defined(CONFIG_440SPE) || \
-    defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
-    defined(CONFIG_405EX)
-   void pcie_setup_hoses(int busno);
-#endif
-#endif
-
 int	misc_init_f   (void);
 int	misc_init_r   (void);