Skip to content

Commit 8c633c7

Browse files
committed
s390/ptrace: Rename psw_t32 to psw32_t
Use a standard "_t" suffix for psw_t32 and rename it to psw32_t. Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
1 parent 52a1f73 commit 8c633c7

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

arch/s390/boot/ipl_data.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#define PSW_MASK_DISABLED (PSW_MASK_WAIT | PSW_MASK_EA | PSW_MASK_BA)
1313

1414
struct ipl_lowcore {
15-
psw_t32 ipl_psw; /* 0x0000 */
15+
psw32_t ipl_psw; /* 0x0000 */
1616
struct ccw0 ccwpgm[2]; /* 0x0008 */
1717
u8 fill[56]; /* 0x0018 */
1818
struct ccw0 ccwpgmcc[20]; /* 0x0050 */

arch/s390/include/asm/ptrace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ enum {
102102
typedef struct {
103103
unsigned int mask;
104104
unsigned int addr;
105-
} psw_t32 __aligned(8);
105+
} psw32_t __aligned(8);
106106

107107
#define PGM_INT_CODE_MASK 0x7f
108108
#define PGM_INT_CODE_PER 0x80

arch/s390/kernel/compat_linux.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ typedef struct {
3333
} _s390_fp_regs32;
3434

3535
typedef struct {
36-
psw_t32 psw;
36+
psw32_t psw;
3737
__u32 gprs[__NUM_GPRS];
3838
__u32 acrs[__NUM_ACRS];
3939
} _s390_regs_common32;

0 commit comments

Comments
 (0)