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

Commit 11814208 authored by Thomas Renninger's avatar Thomas Renninger Committed by Tony Luck
Browse files

Cross-compilation between e.g. i386 -> 64bit could break -> work around it



Adrian Bunk: scripts/mod/file2alias.c is compiled with HOSTCC and ensures that
kernel_ulong_t is correct, but it can't cope with different padding on
different architectures.

Signed-off-by: default avatarThomas Renninger <trenn@suse.de>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 471e7a44
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -159,7 +159,8 @@ struct ap_device_id {

#define AP_DEVICE_ID_MATCH_DEVICE_TYPE		0x01

#define ACPI_ID_LEN	9
#define ACPI_ID_LEN	16 /* only 9 bytes needed here, 16 bytes are used */
			   /* to workaround crosscompile issues */

struct acpi_device_id {
	__u8 id[ACPI_ID_LEN];