diff options
author | Simon Glass <sjg@chromium.org> | 2014-12-29 19:32:22 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-01-23 17:24:15 -0700 |
commit | e5bc97578c189a99c291f7fe7ce89092474e43e9 (patch) | |
tree | 82aa741f9b8e4fc2b0f5b6f66ff49c6bf0520c04 /drivers | |
parent | 37b608a52dcb13312a4f7ccea199cd6bac76d298 (diff) | |
download | u-boot-imx-e5bc97578c189a99c291f7fe7ce89092474e43e9.zip u-boot-imx-e5bc97578c189a99c291f7fe7ce89092474e43e9.tar.gz u-boot-imx-e5bc97578c189a99c291f7fe7ce89092474e43e9.tar.bz2 |
bios_emulator: Fix an #ifdef typo in the header file
This stops the debug mode from working properly.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/bios_emulator/include/x86emu/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bios_emulator/include/x86emu/debug.h b/drivers/bios_emulator/include/x86emu/debug.h index 304b2bf..4962a2a 100644 --- a/drivers/bios_emulator/include/x86emu/debug.h +++ b/drivers/bios_emulator/include/x86emu/debug.h @@ -102,7 +102,7 @@ # define ERR_PRINTF(x) printf(x) # define ERR_PRINTF2(x, y) printf(x, y) -#ifdef CONFIG_X86EMU_DEBUG103 +#ifdef CONFIG_X86EMU_DEBUG # define DECODE_PRINTF(x) if (DEBUG_DECODE()) \ |