diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/arm64/kvm/sys_regs.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/arm64/kvm/sys_regs.c')
| -rw-r--r-- | arch/arm64/kvm/sys_regs.c | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/arch/arm64/kvm/sys_regs.c b/arch/arm64/kvm/sys_regs.c index 6e3b969391fd..a4363735d3f8 100644 --- a/arch/arm64/kvm/sys_regs.c +++ b/arch/arm64/kvm/sys_regs.c @@ -31,7 +31,6 @@  #include <asm/debug-monitors.h>  #include <asm/esr.h>  #include <asm/kvm_arm.h> -#include <asm/kvm_asm.h>  #include <asm/kvm_coproc.h>  #include <asm/kvm_emulate.h>  #include <asm/kvm_host.h> @@ -338,7 +337,7 @@ static bool trap_debug_regs(struct kvm_vcpu *vcpu,  {  	if (p->is_write) {  		vcpu_write_sys_reg(vcpu, p->regval, r->reg); -		vcpu->arch.debug_flags |= KVM_ARM64_DEBUG_DIRTY; +		vcpu->arch.flags |= KVM_ARM64_DEBUG_DIRTY;  	} else {  		p->regval = vcpu_read_sys_reg(vcpu, r->reg);  	} @@ -369,7 +368,7 @@ static void reg_to_dbg(struct kvm_vcpu *vcpu,  	}  	*dbg_reg = val; -	vcpu->arch.debug_flags |= KVM_ARM64_DEBUG_DIRTY; +	vcpu->arch.flags |= KVM_ARM64_DEBUG_DIRTY;  }  static void dbg_to_reg(struct kvm_vcpu *vcpu, @@ -1441,7 +1440,7 @@ static bool trap_debug32(struct kvm_vcpu *vcpu,  {  	if (p->is_write) {  		vcpu_cp14(vcpu, r->reg) = p->regval; -		vcpu->arch.debug_flags |= KVM_ARM64_DEBUG_DIRTY; +		vcpu->arch.flags |= KVM_ARM64_DEBUG_DIRTY;  	} else {  		p->regval = vcpu_cp14(vcpu, r->reg);  	} @@ -1473,7 +1472,7 @@ static bool trap_xvr(struct kvm_vcpu *vcpu,  		val |= p->regval << 32;  		*dbg_reg = val; -		vcpu->arch.debug_flags |= KVM_ARM64_DEBUG_DIRTY; +		vcpu->arch.flags |= KVM_ARM64_DEBUG_DIRTY;  	} else {  		p->regval = *dbg_reg >> 32;  	} |