aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Ramsauer2018-01-26 03:43:20 -0600
committerJan Kiszka2018-01-26 11:07:32 -0600
commitacd8da5bc878edb43038d0d4149c19b589f3d9ac (patch)
tree5624fbb41197615998ffaa39a900e35f189e0545
parenta88684048228fc15bc979abcd533e433f038b370 (diff)
downloadjailhouse-acd8da5bc878edb43038d0d4149c19b589f3d9ac.tar.gz
jailhouse-acd8da5bc878edb43038d0d4149c19b589f3d9ac.tar.xz
jailhouse-acd8da5bc878edb43038d0d4149c19b589f3d9ac.zip
arm: remove superfluous include guards
We don't need include guards here. Signed-off-by: Ralf Ramsauer <ralf.ramsauer@oth-regensburg.de> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
-rw-r--r--hypervisor/arch/arm-common/include/asm/psci.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/hypervisor/arch/arm-common/include/asm/psci.h b/hypervisor/arch/arm-common/include/asm/psci.h
index 09712c6e..e635aec0 100644
--- a/hypervisor/arch/arm-common/include/asm/psci.h
+++ b/hypervisor/arch/arm-common/include/asm/psci.h
@@ -10,9 +10,6 @@
10 * the COPYING file in the top-level directory. 10 * the COPYING file in the top-level directory.
11 */ 11 */
12 12
13#ifndef _JAILHOUSE_ASM_PSCI_H
14#define _JAILHOUSE_ASM_PSCI_H
15
16#define PSCI_VERSION 0x84000000 13#define PSCI_VERSION 0x84000000
17#define PSCI_CPU_SUSPEND_32 0x84000001 14#define PSCI_CPU_SUSPEND_32 0x84000001
18#define PSCI_CPU_SUSPEND_64 0xc4000001 15#define PSCI_CPU_SUSPEND_64 0xc4000001
@@ -44,5 +41,3 @@
44struct trap_context; 41struct trap_context;
45 42
46long psci_dispatch(struct trap_context *ctx); 43long psci_dispatch(struct trap_context *ctx);
47
48#endif /* _JAILHOUSE_ASM_PSCI_H */