Revision 4de6bb0c02ad3f0ec48f0f84ba1a65ab06e81b86 authored by Peter Maydell on 06 November 2018, 18:27:35 UTC, committed by Peter Maydell on 06 November 2018, 18:27:35 UTC
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
1 parent 9012b5c
Raw File
kvm-stub.c
/*
 * QEMU KVM PPC specific function stubs
 *
 * Copyright Freescale Inc. 2013
 *
 * Author: Alexander Graf <agraf@suse.de>
 *
 * 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 "hw/ppc/openpic_kvm.h"

int kvm_openpic_connect_vcpu(DeviceState *d, CPUState *cs)
{
    return -EINVAL;
}
back to top