diff options
author | Simon Glass <sjg@chromium.org> | 2012-12-13 20:49:06 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-02-04 09:05:44 -0500 |
commit | fa25c6f0cccc3691dd3db97cef94a547d1008c73 (patch) | |
tree | 0c25be148cc3ec951909f6c3a7590438aa11c201 /arch/sparc/include/asm | |
parent | e9adeca3fc4fd9b353f2514daa7d799076ae079c (diff) | |
download | u-boot-imx-fa25c6f0cccc3691dd3db97cef94a547d1008c73.zip u-boot-imx-fa25c6f0cccc3691dd3db97cef94a547d1008c73.tar.gz u-boot-imx-fa25c6f0cccc3691dd3db97cef94a547d1008c73.tar.bz2 |
sparc: Drop kbd_status and reset_status from global_data
These fields is not used on sparc, so punt them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sparc/include/asm')
-rw-r--r-- | arch/sparc/include/asm/global_data.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/sparc/include/asm/global_data.h b/arch/sparc/include/asm/global_data.h index a51c40b..7c3d2d5 100644 --- a/arch/sparc/include/asm/global_data.h +++ b/arch/sparc/include/asm/global_data.h @@ -50,7 +50,6 @@ typedef struct global_data { phys_size_t ram_size; /* RAM size */ unsigned long reloc_off; /* Relocation Offset */ - unsigned long reset_status; /* reset status register at boot */ unsigned long env_addr; /* Address of Environment struct */ unsigned long env_valid; /* Checksum of Environment valid? */ unsigned long have_console; /* serial_init() was called */ @@ -73,9 +72,6 @@ typedef struct global_data { unsigned long do_mdm_init; unsigned long be_quiet; #endif -#ifdef CONFIG_LWMON - unsigned long kbd_status; -#endif void **jt; /* jump table */ char env_buf[32]; /* buffer for getenv() before reloc. */ struct arch_global_data arch; /* architecture-specific data */ |