diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:51 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:43 -0500 |
commit | 8670dbc95361340c3082b62abbbbb3d1ffbb89cb (patch) | |
tree | 3f4c933a4d6f5fe0431c9d091639048a73582843 /arch/powerpc/include/asm | |
parent | 45bae2e3cf6b0653a0c68526be51457f50750dd5 (diff) | |
download | u-boot-imx-8670dbc95361340c3082b62abbbbb3d1ffbb89cb.zip u-boot-imx-8670dbc95361340c3082b62abbbbb3d1ffbb89cb.tar.gz u-boot-imx-8670dbc95361340c3082b62abbbbb3d1ffbb89cb.tar.bz2 |
ppc: Move used_laws to arch_global_data
Move this field into arch_global_data and tidy up.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/powerpc/include/asm')
-rw-r--r-- | arch/powerpc/include/asm/global_data.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index 760cdab..c7ce7fd 100644 --- a/arch/powerpc/include/asm/global_data.h +++ b/arch/powerpc/include/asm/global_data.h @@ -88,6 +88,9 @@ struct arch_global_data { uint mp_alloc_base; uint mp_alloc_top; #endif /* CONFIG_QE */ +#if defined(CONFIG_FSL_LAW) + u32 used_laws; +#endif }; /* @@ -110,9 +113,6 @@ typedef struct global_data { #if defined(CONFIG_FSL_ESDHC) u32 sdhc_clk; #endif -#if defined(CONFIG_FSL_LAW) - u32 used_laws; -#endif #if defined(CONFIG_E500) u32 used_tlb_cams[(CONFIG_SYS_NUM_TLBCAMS+31)/32]; #endif |