mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
stubs: remove stubs/kvm.c
This has a single function, just move it to the other target/*/kvm.c files. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
a15215f3e1
commit
d525ffabab
5 changed files with 15 additions and 9 deletions
|
@ -55,6 +55,11 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int kvm_arch_irqchip_create(MachineState *ms, KVMState *s)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int kvm_arch_init_vcpu(CPUState *cs)
|
||||
{
|
||||
MIPSCPU *cpu = MIPS_CPU(cs);
|
||||
|
|
|
@ -145,6 +145,11 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int kvm_arch_irqchip_create(MachineState *ms, KVMState *s)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int kvm_arch_sync_sregs(PowerPCCPU *cpu)
|
||||
{
|
||||
CPUPPCState *cenv = &cpu->env;
|
||||
|
|
|
@ -294,6 +294,11 @@ int kvm_arch_init(MachineState *ms, KVMState *s)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int kvm_arch_irqchip_create(MachineState *ms, KVMState *s)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
unsigned long kvm_arch_vcpu_id(CPUState *cpu)
|
||||
{
|
||||
return cpu->cpu_index;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue