Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 178514d7 authored by Martin Schwidefsky's avatar Martin Schwidefsky Committed by Martin Schwidefsky
Browse files

[S390] correct alignment of cpuid structure



The store-cpu-id instruction has a minimum alignment of 8. Reflect
that in the definition of struct cpuid.

Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent f6649a7e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ struct cpuid
	unsigned int ident   : 24;
	unsigned int machine : 16;
	unsigned int unused  : 16;
} __packed;
} __attribute__ ((packed, aligned(8)));

#endif /* __ASSEMBLY__ */
#endif /* _ASM_S390_CPU_H */