diff options
| author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:05 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:44 -0500 | 
| commit | e9adeca3fc4fd9b353f2514daa7d799076ae079c (patch) | |
| tree | f889e11f70411c773343006862d7e009a79605b9 /arch/arm/include/asm/global_data.h | |
| parent | 225ca83dfea4f9b9a313c5233297132206bff431 (diff) | |
| download | olio-uboot-2014.01-e9adeca3fc4fd9b353f2514daa7d799076ae079c.tar.xz olio-uboot-2014.01-e9adeca3fc4fd9b353f2514daa7d799076ae079c.zip | |
ppc: arm: Move sdhc_clk into arch_global_data
This is used by both powerpc and arm, but I think it still qualifies as
architecture-specific.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/include/asm/global_data.h')
| -rw-r--r-- | arch/arm/include/asm/global_data.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/arch/arm/include/asm/global_data.h b/arch/arm/include/asm/global_data.h index 0c1dbe866..a3398cfc2 100644 --- a/arch/arm/include/asm/global_data.h +++ b/arch/arm/include/asm/global_data.h @@ -26,6 +26,9 @@  /* Architecture-specific global data */  struct arch_global_data { +#if defined(CONFIG_FSL_ESDHC) +	u32 sdhc_clk; +#endif  #ifdef CONFIG_AT91FAMILY  	/* "static data" needed by at91's clock.c */  	unsigned long	cpu_clk_rate_hz; @@ -69,9 +72,6 @@ typedef	struct	global_data {  	unsigned long	env_addr;	/* Address  of Environment struct */  	unsigned long	env_valid;	/* Checksum of Environment valid? */  	unsigned long	fb_base;	/* base address of frame buffer */ -#ifdef CONFIG_FSL_ESDHC -	unsigned long	sdhc_clk; -#endif  	unsigned long	relocaddr;	/* Start address of U-Boot in RAM */  	phys_size_t	ram_size;	/* RAM size */  	unsigned long	mon_len;	/* monitor len */ |