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) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * Copyright (C) 2008 Michal Simek <monstr@monstr.eu>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  * Copyright (C) 2006 Atmark Techno, Inc.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #ifndef _ASM_MICROBLAZE_UNALIGNED_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define _ASM_MICROBLAZE_UNALIGNED_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) # ifdef __KERNEL__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #  ifdef __MICROBLAZEEL__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #   include <linux/unaligned/le_struct.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #   include <linux/unaligned/be_byteshift.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #   define get_unaligned	__get_unaligned_le
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #   define put_unaligned	__put_unaligned_le
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #  else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #   include <linux/unaligned/be_struct.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #   include <linux/unaligned/le_byteshift.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #   define get_unaligned	__get_unaligned_be
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #   define put_unaligned	__put_unaligned_be
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #  endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) # include <linux/unaligned/generic.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) # endif	/* __KERNEL__ */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) #endif /* _ASM_MICROBLAZE_UNALIGNED_H */