From: Simon Glass Date: Tue, 30 Dec 2014 02:32:22 +0000 (-0700) Subject: bios_emulator: Fix an #ifdef typo in the header file X-Git-Tag: KARO-TXA5-2015-06-26~38^2~37^2~28 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e5bc97578c189a99c291f7fe7ce89092474e43e9;p=karo-tx-uboot.git bios_emulator: Fix an #ifdef typo in the header file This stops the debug mode from working properly. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/drivers/bios_emulator/include/x86emu/debug.h b/drivers/bios_emulator/include/x86emu/debug.h index 304b2bf007..4962a2acaf 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()) \