Skip to content

Commit b88faa1

Browse files
frankjaahuth
authored andcommitted
pc-bios: s390x: Rename PSW_MASK_ZMODE to PSW_MASK_64
This constant enables 64 bit addressing, not the ESAME architecture, so it shouldn't be named ZMODE. Signed-off-by: Janosch Frank <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Message-Id: <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent e6d393d commit b88faa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pc-bios/s390-ccw/s390-arch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ _Static_assert(sizeof(struct PSWLegacy) == 8, "PSWLegacy size incorrect");
2929
#define PSW_MASK_WAIT 0x0002000000000000ULL
3030
#define PSW_MASK_EAMODE 0x0000000100000000ULL
3131
#define PSW_MASK_BAMODE 0x0000000080000000ULL
32-
#define PSW_MASK_ZMODE (PSW_MASK_EAMODE | PSW_MASK_BAMODE)
32+
#define PSW_MASK_64 (PSW_MASK_EAMODE | PSW_MASK_BAMODE)
3333

3434
/* Low core mapping */
3535
typedef struct LowCore {

0 commit comments

Comments
 (0)