aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-arm/spinlock.h
blob: a064f737c30fc489386d1aeafc519532fbcd2c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __ASM_SPINLOCK_H
#define __ASM_SPINLOCK_H

#include <xen/config.h>
#include <xen/lib.h>

#if defined(CONFIG_ARM_32)
# include <asm/arm32/spinlock.h>
#elif defined(CONFIG_ARM_64)
# include <asm/arm64/spinlock.h>
#else
# error "unknown ARM variant"
#endif

#endif /* __ASM_SPINLOCK_H */
/*
 * Local variables:
 * mode: C
 * c-file-style: "BSD"
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 */