diff options
| author | Simon Glass <sjg@chromium.org> | 2013-12-03 16:43:23 -0700 | 
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2013-12-09 12:22:02 -0700 | 
| commit | 7b3efc66996b6686ad393b706c323990afa31930 (patch) | |
| tree | 1be7f83536e5f91b48f460feb0999bf1f23aeedb /arch/sandbox/cpu/os.c | |
| parent | f44483b57c49282299da0e5c10073b909cdad979 (diff) | |
| download | olio-uboot-2014.01-7b3efc66996b6686ad393b706c323990afa31930.tar.xz olio-uboot-2014.01-7b3efc66996b6686ad393b706c323990afa31930.zip | |
sandbox: Rename sb_cmdline_option to sandbox_cmdline_option
The new name is longer but more clearly related to sandbox.
This is in a separate patch within the same series since some comments on the
SPI series rely on it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Hung-ying Tyan <tyanh@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu/os.c')
| -rw-r--r-- | arch/sandbox/cpu/os.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c index db66fd31f..26f44cb59 100644 --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c @@ -161,7 +161,7 @@ static struct option *long_opts;  int os_parse_args(struct sandbox_state *state, int argc, char *argv[])  { -	struct sb_cmdline_option **sb_opt = __u_boot_sandbox_option_start; +	struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;  	size_t num_options = __u_boot_sandbox_option_count();  	size_t i; |