summaryrefslogtreecommitdiff
path: root/arch/s390/include/asm/diag.h
diff options
context:
space:
mode:
authorSven Schnelle <svens@linux.ibm.com>2022-12-05 17:20:46 +0300
committerHeiko Carstens <hca@linux.ibm.com>2023-01-09 16:34:05 +0300
commitfe5e23dd983cc3e676f2f9355796e2505d889ce4 (patch)
tree283f1c963a3dd45b6a50433c150637823c5f29d5 /arch/s390/include/asm/diag.h
parent61f37f63f930a0d759fc3a98bb3a2330a34c6220 (diff)
downloadlinux-fe5e23dd983cc3e676f2f9355796e2505d889ce4.tar.xz
s390/diag: use __packed __aligned
Use __packed __aligned instead of __attribute__((packed, aligned(X))); to match the rest of the file. Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Acked-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/diag.h')
-rw-r--r--arch/s390/include/asm/diag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/diag.h b/arch/s390/include/asm/diag.h
index 9488b7ffb21c..674a939f16ee 100644
--- a/arch/s390/include/asm/diag.h
+++ b/arch/s390/include/asm/diag.h
@@ -81,7 +81,7 @@ struct diag210 {
u8 vrdccrty; /* real device type (output) */
u8 vrdccrmd; /* real device model (output) */
u8 vrdccrft; /* real device feature (output) */
-} __attribute__((packed, aligned(4)));
+} __packed __aligned(4);
extern int diag210(struct diag210 *addr);