arm64: Revert "sigcontext: use standard __uint128_t type for vregs in struct fpsimd_context."
It causes this issue with the Android build system: out/soong/.intermediates/vendor/lineage/build/soong/generated_kernel_includes/ge n/usr/include/asm/sigcontext.h:53:2: error: unknown type name '__uint128_t' __uint128_t vregs[32]; ^ Change-Id: Ia4cf9c0e2b6a32550ec6c4398139838add0b24a1
This commit is contained in:
parent
6bc44a0977
commit
e4a3136cae
@ -68,13 +68,18 @@ struct _aarch64_ctx {
|
||||
__u32 size;
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
__u64 a;
|
||||
__u64 b;
|
||||
} ___uint128_t;
|
||||
|
||||
#define FPSIMD_MAGIC 0x46508001
|
||||
|
||||
struct fpsimd_context {
|
||||
struct _aarch64_ctx head;
|
||||
__u32 fpsr;
|
||||
__u32 fpcr;
|
||||
__uint128_t vregs[32];
|
||||
___uint128_t vregs[32];
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user