blob: 51c7aea4f44718b29ee27a9501fc7265712b753c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. */
#ifndef _ASM_ARM_NOSPEC_H
#define _ASM_ARM_NOSPEC_H
static inline bool evaluate_nospec(bool condition)
{
return condition;
}
static inline void block_speculation(void)
{
}
#endif /* _ASM_ARM_NOSPEC_H */
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
|