Revert "arm64: sigcontext: use standard __uint128_t type for vregs in struct fpsimd_context."
This reverts commit 447dabc1fedbafb1f9894e0c3054bf546a1af913 as 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]; ^ 1 error generated.
This commit is contained in:
parent
0e2c60f465
commit
2a549c0e64
1 changed files with 6 additions and 1 deletions
|
@ -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 a new issue