mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
common/cmd_bootm.c: Fix GCC 4.6 warnings
Fix: cmd_bootm.c: In function 'bootm_load_os': cmd_bootm.c:315:7: warning: unused variable 'unc_len' [-Wunused-variable] Signed-off-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
5076c7ab71
commit
5bf2766b4b
1 changed files with 2 additions and 1 deletions
|
@ -36,6 +36,7 @@
|
|||
#include <lmb.h>
|
||||
#include <linux/ctype.h>
|
||||
#include <asm/byteorder.h>
|
||||
#include <linux/compiler.h>
|
||||
|
||||
#if defined(CONFIG_CMD_USB)
|
||||
#include <usb.h>
|
||||
|
@ -312,7 +313,7 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
|
|||
ulong blob_end = os.end;
|
||||
ulong image_start = os.image_start;
|
||||
ulong image_len = os.image_len;
|
||||
uint unc_len = CONFIG_SYS_BOOTM_LEN;
|
||||
__maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
|
||||
#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
|
||||
int ret;
|
||||
#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
|
||||
|
|
Loading…
Reference in a new issue