b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | #ifndef _ASM_X86_UNALIGNED_H | ||||
3 | #define _ASM_X86_UNALIGNED_H | ||||
4 | |||||
5 | /* | ||||
6 | * The x86 can do unaligned accesses itself. | ||||
7 | */ | ||||
8 | |||||
9 | #include <linux/unaligned/access_ok.h> | ||||
10 | #include <linux/unaligned/generic.h> | ||||
11 | |||||
12 | #define get_unaligned __get_unaligned_le | ||||
13 | #define put_unaligned __put_unaligned_le | ||||
14 | |||||
15 | #endif /* _ASM_X86_UNALIGNED_H */ |