Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7d5b05f authored by Dengcheng Zhu's avatar Dengcheng Zhu Committed by Paolo Bonzini
Browse files

MIPS: KVM: Rename files to remove the prefix "kvm_" and "kvm_mips_"



Since all the files are in arch/mips/kvm/, there's no need of the prefixes
"kvm_" and "kvm_mips_".

Reviewed-by: default avatarJames Hogan <james.hogan@imgtec.com>
Signed-off-by: default avatarDeng-Cheng Zhu <dengcheng.zhu@imgtec.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent b045c406
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,9 +5,9 @@ common-objs = $(addprefix ../../../virt/kvm/, kvm_main.o coalesced_mmio.o)

EXTRA_CFLAGS += -Ivirt/kvm -Iarch/mips/kvm

kvm-objs := $(common-objs) kvm_mips.o kvm_mips_emul.o kvm_locore.o \
	    kvm_mips_int.o kvm_mips_stats.o kvm_mips_commpage.o \
	    kvm_mips_dyntrans.o kvm_trap_emul.o
kvm-objs := $(common-objs) mips.o emulate.o locore.o \
	    interrupt.o stats.o commpage.o \
	    dyntrans.o trap_emul.o

obj-$(CONFIG_KVM)	+= kvm.o
obj-y			+= kvm_cb.o kvm_tlb.o
obj-y			+= callback.o tlb.o
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

#include <linux/kvm_host.h>

#include "kvm_mips_comm.h"
#include "commpage.h"

void kvm_mips_commpage_init(struct kvm_vcpu *vcpu)
{
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
#include <linux/bootmem.h>
#include <asm/cacheflush.h>

#include "kvm_mips_comm.h"
#include "commpage.h"

#define SYNCI_TEMPLATE  0x041f0000
#define SYNCI_BASE(x)   (((x) >> 21) & 0x1f)
Loading