From: Heiko Carstens Date: Mon, 24 Jul 2023 15:20:27 +0000 (+0200) Subject: s390/pfault: use UL instead of ULL X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b60624bb0a94126a26b9ac9653b4668a1a70ba2a;p=linux.git s390/pfault: use UL instead of ULL 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 Signed-off-by: Heiko Carstens --- diff --git a/arch/s390/mm/pfault.c b/arch/s390/mm/pfault.c index 5c0547f8d5ee7..05865e5616b24 100644 --- a/arch/s390/mm/pfault.c +++ b/arch/s390/mm/pfault.c @@ -13,7 +13,7 @@ #include #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 };