diff options
author | Simon Glass | 2012-12-13 20:48:56 +0000 |
---|---|---|
committer | Tom Rini | 2013-02-04 09:05:43 -0500 |
commit | 3c4c308c0057bb731ac20de1f2b9a3c509008ad0 (patch) | |
tree | 2694ea79ef9bba5667c1dd8ab0714e2aa056425c /arch/powerpc/include | |
parent | 1c356135fa1fd2c2f6d775ba1b2f86e4823d8338 (diff) |
ppc: Move reset_status 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')
-rw-r--r-- | arch/powerpc/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index 656117b0d4f..136b918055f 100644 --- a/arch/powerpc/include/asm/global_data.h +++ b/arch/powerpc/include/asm/global_data.h @@ -107,6 +107,7 @@ struct arch_global_data { unsigned long pev_clk; unsigned long flb_clk; #endif + unsigned long reset_status; /* reset status register at boot */ }; /* @@ -130,7 +131,6 @@ typedef struct global_data { u32 sdhc_clk; #endif phys_size_t ram_size; /* RAM size */ - unsigned long reset_status; /* reset status register at boot */ #if defined(CONFIG_MPC83xx) unsigned long arbiter_event_attributes; unsigned long arbiter_event_address; |