Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm64/include/asm/arm-cci.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* arch/arm64/include/asm/arm-cci.h
4
*
5
* Copyright (C) 2015 ARM Ltd.
6
*/
7
8
#ifndef __ASM_ARM_CCI_H
9
#define __ASM_ARM_CCI_H
10
11
static inline bool platform_has_secure_cci_access(void)
12
{
13
return false;
14
}
15
16
#endif
17
18