s390/pfault: use UL instead of ULL
authorHeiko Carstens <hca@linux.ibm.com>
Mon, 24 Jul 2023 15:20:27 +0000 (17:20 +0200)
committerHeiko Carstens <hca@linux.ibm.com>
Sat, 29 Jul 2023 12:57:18 +0000 (14:57 +0200)
Remove another leftover of the 31 bit area: replace the not needed
"unsigned long long" suffix with "unsigned long", and stay consistent
with the rest of the code.

Reviewed-by: Sven Schnelle <svens@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
arch/s390/mm/pfault.c

index 5c0547f8d5ee7222a8284b17fd0097bc9a40f3a1..05865e5616b24f8a0916e84b63269716fa4f988a 100644 (file)
@@ -13,7 +13,7 @@
 #include <asm/diag.h>
 
 #define __SUBCODE_MASK 0x0600
-#define __PF_RES_FIELD 0x8000000000000000ULL
+#define __PF_RES_FIELD 0x8000000000000000UL
 
 /*
  * 'pfault' pseudo page faults routines.
@@ -45,8 +45,8 @@ static struct pfault_refbk pfault_init_refbk = {
        .refdwlen = 5,
        .refversn = 2,
        .refgaddr = __LC_LPP,
-       .refselmk = 1ULL << 48,
-       .refcmpmk = 1ULL << 48,
+       .refselmk = 1UL << 48,
+       .refcmpmk = 1UL << 48,
        .reserved = __PF_RES_FIELD
 };