]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm: Rename interrupt emulation source files
authorPekka Enberg <penberg@cs.helsinki.fi>
Sun, 28 Mar 2010 16:33:16 +0000 (19:33 +0300)
committerPekka Enberg <penberg@cs.helsinki.fi>
Sun, 28 Mar 2010 16:33:16 +0000 (19:33 +0300)
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
tools/kvm/Makefile
tools/kvm/include/kvm/interrupt.h [moved from tools/kvm/ivt.h with 100% similarity]
tools/kvm/interrupt.c [moved from tools/kvm/ivt.c with 96% similarity]
tools/kvm/kvm.c

index 7776a8961f0c997a82d16142b4171353a62dbee1..4e6b73258ccd4ecd24abf1acdf20083f12e65b7a 100644 (file)
@@ -1,10 +1,10 @@
 PROGRAM        = kvm
 
 OBJS   += cpu.o
+OBJS   += interrupt.o
 OBJS   += kvm.o
 OBJS   += main.o
 OBJS   += util.o
-OBJS   += ivt.o
 
 CFLAGS += $(CPPFLAGS) -Iinclude
 
similarity index 96%
rename from tools/kvm/ivt.c
rename to tools/kvm/interrupt.c
index 36ffb01f97aa1bd80204464744f9e8a789251b3e..f831e49b6a12ffac51b20fbe74110cac04cbed9b 100644 (file)
@@ -1,3 +1,5 @@
+#include "kvm/interrupt.h"
+
 #include <stdbool.h>
 #include <limits.h>
 #include <stdarg.h>
@@ -7,7 +9,6 @@
 #include <stdio.h>
 
 #include "util.h"
-#include "ivt.h"
 
 static struct ivt_entry ivt_table[IVT_VECTORS];
 
index 01d85a62c93e7919c8ef84608050a79324aea2ec..a6d5f4ed44d1399509b577fbea11dde03e839732 100644 (file)
@@ -1,5 +1,7 @@
 #include "kvm/kvm.h"
 
+#include "kvm/interrupt.h"
+
 #include <linux/kvm.h>
 
 #include <asm/bootparam.h>
@@ -16,7 +18,6 @@
 #include <stdio.h>
 #include <fcntl.h>
 
-#include "ivt.h"
 #include "util.h"
 
 /*