diff options
| author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:48:56 +0000 |
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:43 -0500 |
| commit | 3c4c308c0057bb731ac20de1f2b9a3c509008ad0 (patch) | |
| tree | 2694ea79ef9bba5667c1dd8ab0714e2aa056425c /arch/powerpc/cpu/mpc512x/cpu_init.c | |
| parent | 1c356135fa1fd2c2f6d775ba1b2f86e4823d8338 (diff) | |
| download | olio-uboot-2014.01-3c4c308c0057bb731ac20de1f2b9a3c509008ad0.tar.xz olio-uboot-2014.01-3c4c308c0057bb731ac20de1f2b9a3c509008ad0.zip | |
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/cpu/mpc512x/cpu_init.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc512x/cpu_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/cpu/mpc512x/cpu_init.c b/arch/powerpc/cpu/mpc512x/cpu_init.c index fe6beaf84..32ade1b0b 100644 --- a/arch/powerpc/cpu/mpc512x/cpu_init.c +++ b/arch/powerpc/cpu/mpc512x/cpu_init.c @@ -62,7 +62,7 @@ void cpu_init_f (volatile immap_t * im) #endif /* RSR - Reset Status Register - clear all status */ - gd->reset_status = im->reset.rsr; + gd->arch.reset_status = im->reset.rsr; out_be32(&im->reset.rsr, ~RSR_RES); /* |