Commit 8c633c78 authored by Heiko Carstens's avatar Heiko Carstens
Browse files

s390/ptrace: Rename psw_t32 to psw32_t



Use a standard "_t" suffix for psw_t32 and rename it to psw32_t.

Reviewed-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarHeiko Carstens <hca@linux.ibm.com>
parent 52a1f73d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
#define PSW_MASK_DISABLED (PSW_MASK_WAIT | PSW_MASK_EA | PSW_MASK_BA)

struct ipl_lowcore {
	psw_t32		ipl_psw;			/* 0x0000 */
	psw32_t		ipl_psw;			/* 0x0000 */
	struct ccw0	ccwpgm[2];			/* 0x0008 */
	u8		fill[56];			/* 0x0018 */
	struct ccw0	ccwpgmcc[20];			/* 0x0050 */
+1 −1
Original line number Diff line number Diff line
@@ -102,7 +102,7 @@ enum {
typedef struct {
	unsigned int mask;
	unsigned int addr;
} psw_t32 __aligned(8);
} psw32_t __aligned(8);

#define PGM_INT_CODE_MASK	0x7f
#define PGM_INT_CODE_PER	0x80
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ typedef struct {
} _s390_fp_regs32;

typedef struct {
	psw_t32		psw;
	psw32_t		psw;
	__u32		gprs[__NUM_GPRS];
	__u32		acrs[__NUM_ACRS];
} _s390_regs_common32;