diff options
author | Yuri Zaporozhets <yuriz@qrv-systems.net> | 2024-11-08 14:13:29 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-11-16 20:54:16 -0600 |
commit | 7f150502103b8e0e18864358d7ca2568db9bf174 (patch) | |
tree | 8a6c404ad803a5b97b3d47e158579d102f691a2f | |
parent | 18115aae5321dd559ef25e0097ea27f632aab1cc (diff) |
bios_emulator: add missing includes to debug.c
When compiling with X86EMU_DEBUG, the compiler complains that debug.c misses
two include files. Fix that.
Signed-off-by: Yuri Zaporozhets <yuriz@qrv-systems.net>
-rw-r--r-- | drivers/bios_emulator/x86emu/debug.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bios_emulator/x86emu/debug.c b/drivers/bios_emulator/x86emu/debug.c index b426dc3bc45..c63cf3d26b5 100644 --- a/drivers/bios_emulator/x86emu/debug.c +++ b/drivers/bios_emulator/x86emu/debug.c @@ -38,6 +38,8 @@ ****************************************************************************/ #include <stdarg.h> +#include <string.h> +#include <vsprintf.h> #include <linux/ctype.h> #include <linux/printk.h> #include "x86emu/x86emui.h" |