Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #ifndef __ASM_GENERIC_COMPAT_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #define __ASM_GENERIC_COMPAT_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) /* These types are common across all compat ABIs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) typedef u32 compat_size_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) typedef s32 compat_ssize_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) typedef s32 compat_clock_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) typedef s32 compat_pid_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) typedef u32 compat_ino_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) typedef s32 compat_off_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) typedef s64 compat_loff_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) typedef s32 compat_daddr_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) typedef s32 compat_timer_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) typedef s32 compat_key_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) typedef s16 compat_short_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) typedef s32 compat_int_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) typedef s32 compat_long_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) typedef u16 compat_ushort_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) typedef u32 compat_uint_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) typedef u32 compat_ulong_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) typedef u32 compat_uptr_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) typedef u32 compat_aio_context_t;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #ifdef CONFIG_COMPAT_FOR_U64_ALIGNMENT
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) typedef s64 __attribute__((aligned(4))) compat_s64;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) typedef u64 __attribute__((aligned(4))) compat_u64;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) typedef s64 compat_s64;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) typedef u64 compat_u64;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) #endif