diff mbox

[U-Boot,06/38] common: Move get_OPB_freq() and get_PCI_freq() to PPC header

Message ID 20170517142311.29484-7-sjg@chromium.org
State Accepted
Commit 4baf23e0beaca4ea90983c8f97e1bba0282b5fc1
Delegated to: Tom Rini
Headers show

Commit Message

Simon Glass May 17, 2017, 2:22 p.m. UTC
These should not be in common.h. Move the to an arch-specific header.

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

 arch/powerpc/include/asm/ppc4xx.h | 3 +++
 include/common.h                  | 4 ----
 2 files changed, 3 insertions(+), 4 deletions(-)

Comments

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

> These should not be in common.h. Move the 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/ppc4xx.h b/arch/powerpc/include/asm/ppc4xx.h
index b8b0ff9f25..30e6559ba4 100644
--- a/arch/powerpc/include/asm/ppc4xx.h
+++ b/arch/powerpc/include/asm/ppc4xx.h
@@ -289,6 +289,9 @@  static inline void set_mcsr(u32 val)
 
 int ppc4xx_pci_sync_clock_config(u32 async);
 
+unsigned long get_OPB_freq(void);
+unsigned long get_PCI_freq(void);
+
 #endif	/* __ASSEMBLY__ */
 
 /* for multi-cpu support */
diff --git a/include/common.h b/include/common.h
index 6dd0d2f552..8b64407fd1 100644
--- a/include/common.h
+++ b/include/common.h
@@ -649,10 +649,6 @@  int	get_clocks (void);
 #if defined(CONFIG_MPC5xxx)
 int	prt_mpc5xxx_clks (void);
 #endif
-#ifdef CONFIG_4xx
-ulong	get_OPB_freq (void);
-ulong	get_PCI_freq (void);
-#endif
 #if defined(CONFIG_S3C24X0) || \
     defined(CONFIG_LH7A40X) || \
     defined(CONFIG_EP93XX)