Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/loongarch/include/asm/acenv.h
29270 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* LoongArch specific ACPICA environments and implementation
4
*
5
* Author: Jianmin Lv <[email protected]>
6
* Huacai Chen <[email protected]>
7
* Copyright (C) 2020-2022 Loongson Technology Corporation Limited
8
*/
9
10
#ifndef _ASM_LOONGARCH_ACENV_H
11
#define _ASM_LOONGARCH_ACENV_H
12
13
#ifdef CONFIG_ARCH_STRICT_ALIGN
14
#define ACPI_MISALIGNMENT_NOT_SUPPORTED
15
#endif /* CONFIG_ARCH_STRICT_ALIGN */
16
17
#endif /* _ASM_LOONGARCH_ACENV_H */
18
19