aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/include
diff options
context:
space:
mode:
authorThomas Huth <thuth@linux.vnet.ibm.com>2013-06-20 11:21:59 -0400
committerPaolo Bonzini <pbonzini@redhat.com>2013-06-20 17:31:04 -0400
commit208dd7567df471c7c47aa25b94569afc115de5f5 (patch)
tree70abff3e94f201a927bd8f5e64ef34dc99068ba7 /arch/s390/include
parent6c806a7332e6d36c1f95966b4a8a22f342b68948 (diff)
KVM: s390: Renamed PGM_PRIVILEGED_OPERATION
Renamed the PGM_PRIVILEGED_OPERATION define to PGM_PRIVILEGED_OP since this define was way longer than the other PGM_* defines and caused the code often to exceed the 80 columns limit when not split to multiple lines. Signed-off-by: Thomas Huth <thuth@linux.vnet.ibm.com> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/s390/include')
-rw-r--r--arch/s390/include/asm/kvm_host.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/kvm_host.h b/arch/s390/include/asm/kvm_host.h
index 43390699bd39..3238d4004e84 100644
--- a/arch/s390/include/asm/kvm_host.h
+++ b/arch/s390/include/asm/kvm_host.h
@@ -175,7 +175,7 @@ struct kvm_s390_ext_info {
175}; 175};
176 176
177#define PGM_OPERATION 0x01 177#define PGM_OPERATION 0x01
178#define PGM_PRIVILEGED_OPERATION 0x02 178#define PGM_PRIVILEGED_OP 0x02
179#define PGM_EXECUTE 0x03 179#define PGM_EXECUTE 0x03
180#define PGM_PROTECTION 0x04 180#define PGM_PROTECTION 0x04
181#define PGM_ADDRESSING 0x05 181#define PGM_ADDRESSING 0x05