diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-08-01 19:37:08 +0200 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-08-09 22:24:02 +0800 |
commit | fd95e1017897474b18ac1a4a7915bf8e59ec204f (patch) | |
tree | 8d5037cee35f5cd5f6ab286f25f75e3b2f5185ab /drivers/bios_emulator | |
parent | c1865bbd166eed8913afe3b66c8b28b7c83a46fc (diff) | |
download | u-boot-fd95e1017897474b18ac1a4a7915bf8e59ec204f.tar.gz |
bios_emulator: remove stray break
Remove a stray break which suppresses some debug messages.
Indicated by cppcheck.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/bios_emulator')
-rw-r--r-- | drivers/bios_emulator/atibios.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/bios_emulator/atibios.c b/drivers/bios_emulator/atibios.c index 4f362d1453..fb806b53d4 100644 --- a/drivers/bios_emulator/atibios.c +++ b/drivers/bios_emulator/atibios.c @@ -136,7 +136,6 @@ static int atibios_debug_mode(BE_VGAInfo *vga_info, RMREGS *regs, bool linear_ok; int attr; - break; debug("Mode %x: ", mode); memset(buffer, '\0', sizeof(struct vbe_mode_info)); regs->e.eax = VESA_GET_MODE_INFO; |