mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
drivers/bios_emulator/x86emu/ops2.c: Fix GCC 4.6 build warning
Fix: x86emu/ops2.c: In function 'x86emuOp2_set_byte': x86emu/ops2.c:171:11: warning: variable 'name' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
ca8a30ec6a
commit
d90a5b1ed1
1 changed files with 2 additions and 1 deletions
|
@ -42,6 +42,7 @@
|
|||
****************************************************************************/
|
||||
|
||||
#include <common.h>
|
||||
#include <linux/compiler.h>
|
||||
#include "x86emu/x86emui.h"
|
||||
|
||||
/*----------------------------- Implementation ----------------------------*/
|
||||
|
@ -168,7 +169,7 @@ void x86emuOp2_set_byte(u8 op2)
|
|||
int mod, rl, rh;
|
||||
uint destoffset;
|
||||
u8 *destreg;
|
||||
char *name = 0;
|
||||
__maybe_unused char *name = 0;
|
||||
int cond = 0;
|
||||
|
||||
START_OF_INSTR();
|
||||
|
|
Loading…
Add table
Reference in a new issue