From 9759db0dd916586ff022f5d16bde5ab52cc05e83 Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Mon, 1 Jun 2015 15:51:12 +0100 Subject: [PATCH] kvmtool: move include/bios/memcpy.h to x86/include/asm/bios This file contains a prototype solely used by the BIOS blob code for x86 systems. Make this clear by moving the include file into the x86 directory. Signed-off-by: Andre Przywara Signed-off-by: Will Deacon --- x86/bios/int10.c | 2 +- x86/bios/memcpy.c | 2 +- {include => x86/include/asm}/bios/memcpy.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {include => x86/include/asm}/bios/memcpy.h (100%) diff --git a/x86/bios/int10.c b/x86/bios/int10.c index 2ea4698..d164cf5 100644 --- a/x86/bios/int10.c +++ b/x86/bios/int10.c @@ -1,7 +1,7 @@ #include "kvm/bios.h" #include "kvm/vesa.h" -#include "bios/memcpy.h" +#include "asm/bios/memcpy.h" #include "asm/bios/vesa.h" diff --git a/x86/bios/memcpy.c b/x86/bios/memcpy.c index 40b9b65..2be3a27 100644 --- a/x86/bios/memcpy.c +++ b/x86/bios/memcpy.c @@ -1,4 +1,4 @@ -#include "bios/memcpy.h" +#include "asm/bios/memcpy.h" /* * Copy memory area in 16-bit real mode. diff --git a/include/bios/memcpy.h b/x86/include/asm/bios/memcpy.h similarity index 100% rename from include/bios/memcpy.h rename to x86/include/asm/bios/memcpy.h