Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *
0004  * Copyright (C) 2012 ARM Limited
0005  */
0006 
0007 #ifndef __ASM_ARM_PSCI_H
0008 #define __ASM_ARM_PSCI_H
0009 
0010 extern const struct smp_operations psci_smp_ops;
0011 
0012 #if defined(CONFIG_SMP) && defined(CONFIG_ARM_PSCI)
0013 bool psci_smp_available(void);
0014 #else
0015 static inline bool psci_smp_available(void) { return false; }
0016 #endif
0017 
0018 #endif /* __ASM_ARM_PSCI_H */