aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJanosch Frank <frankja@linux.ibm.com>2020-04-29 10:35:18 -0400
committerDavid Hildenbrand <david@redhat.com>2020-04-30 16:52:14 +0200
commitf7df29115f736b9ffe8e529ba9c2b418d2f5e736 (patch)
tree386bbdaaca2a789b6e689bcbb50ccc54345acc36
parent166da884ddd1bb93446b932209b92195700606f5 (diff)
downloadkvm-unit-tests-f7df29115f736b9ffe8e529ba9c2b418d2f5e736.tar.gz
s390x: Fix library constant definitions
Seems like I uppercased the whole region instead of only the ULs when I added those definitions. Let's make the x lowercase again. Signed-off-by: Janosch Frank <frankja@linux.ibm.com> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: David Hildenbrand <david@redhat.com> Message-Id: <20200429143518.1360468-11-frankja@linux.ibm.com> Signed-off-by: David Hildenbrand <david@redhat.com>
-rw-r--r--lib/s390x/asm/arch_def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/s390x/asm/arch_def.h b/lib/s390x/asm/arch_def.h
index 15a4d49..1b3bb0c 100644
--- a/lib/s390x/asm/arch_def.h
+++ b/lib/s390x/asm/arch_def.h
@@ -19,10 +19,10 @@ struct psw {
#define PSW_MASK_DAT 0x0400000000000000UL
#define PSW_MASK_PSTATE 0x0001000000000000UL
-#define CR0_EXTM_SCLP 0X0000000000000200UL
-#define CR0_EXTM_EXTC 0X0000000000002000UL
-#define CR0_EXTM_EMGC 0X0000000000004000UL
-#define CR0_EXTM_MASK 0X0000000000006200UL
+#define CR0_EXTM_SCLP 0x0000000000000200UL
+#define CR0_EXTM_EXTC 0x0000000000002000UL
+#define CR0_EXTM_EMGC 0x0000000000004000UL
+#define CR0_EXTM_MASK 0x0000000000006200UL
struct lowcore {
uint8_t pad_0x0000[0x0080 - 0x0000]; /* 0x0000 */