summaryrefslogtreecommitdiff
path: root/target/arm/kvm-stub.c
diff options
context:
space:
mode:
Diffstat (limited to 'target/arm/kvm-stub.c')
-rw-r--r--target/arm/kvm-stub.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/target/arm/kvm-stub.c b/target/arm/kvm-stub.c
new file mode 100644
index 0000000000..b2c66df532
--- /dev/null
+++ b/target/arm/kvm-stub.c
@@ -0,0 +1,25 @@
+/*
+ * QEMU KVM ARM specific function stubs
+ *
+ * Copyright Linaro Limited 2013
+ *
+ * Author: Peter Maydell <peter.maydell@linaro.org>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ *
+ */
+#include "qemu/osdep.h"
+#include "qemu-common.h"
+#include "cpu.h"
+#include "kvm_arm.h"
+
+bool write_kvmstate_to_list(ARMCPU *cpu)
+{
+ abort();
+}
+
+bool write_list_to_kvmstate(ARMCPU *cpu, int level)
+{
+ abort();
+}