2013-06-25 19:16:07 +02:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
2015-12-07 17:23:44 +01:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-15 16:58:45 +01:00
|
|
|
#include "cpu.h"
|
2013-06-25 19:16:07 +02:00
|
|
|
#include "kvm_arm.h"
|
|
|
|
|
|
|
|
bool write_kvmstate_to_list(ARMCPU *cpu)
|
|
|
|
{
|
2022-05-01 07:49:48 +02:00
|
|
|
g_assert_not_reached();
|
2013-06-25 19:16:07 +02:00
|
|
|
}
|
|
|
|
|
2015-07-21 12:18:45 +02:00
|
|
|
bool write_list_to_kvmstate(ARMCPU *cpu, int level)
|
2013-06-25 19:16:07 +02:00
|
|
|
{
|
2022-05-01 07:49:48 +02:00
|
|
|
g_assert_not_reached();
|
2013-06-25 19:16:07 +02:00
|
|
|
}
|