]> git.sur5r.net Git - u-boot/blobdiff - drivers/bios_emulator/bios.c
Fix more printf() format warnings
[u-boot] / drivers / bios_emulator / bios.c
index ed5437eec94d8daf892656ab856e8cdeb307c642..d41511c1d48280ecb31f4a7874afd50d15dee9b5 100644 (file)
 *
 * Description:  Module implementing the BIOS specific functions.
 *
-*              Jason ported this file to u-boot to run the ATI video card
-*              video BIOS.
+*              Jason ported this file to u-boot to run the ATI video card
+*              video BIOS.
 *
 ****************************************************************************/
 
+#include <common.h>
+
+#if defined(CONFIG_BIOSEMU)
+
 #include "biosemui.h"
 
 /*----------------------------- Implementation ----------------------------*/
@@ -319,3 +323,4 @@ void _BE_bios_init(u32 * intrTab)
        bios_intr_tab[0x6D] = int10;
        X86EMU_setupIntrFuncs(bios_intr_tab);
 }
+#endif