/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * Copyright (C) 2012 ARM Limited */ #ifndef __ASM_ARM_PSCI_H #define __ASM_ARM_PSCI_H extern const struct smp_operations psci_smp_ops; #if defined(CONFIG_SMP) && defined(CONFIG_ARM_PSCI) bool psci_smp_available(void); #else
static inline bool psci_smp_available(void) { return false; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Stefano Stabellini | 28 | 57.14% | 1 | 25.00% |
Will Deacon | 10 | 20.41% | 1 | 25.00% |
Arnd Bergmann | 10 | 20.41% | 1 | 25.00% |
Masahiro Yamada | 1 | 2.04% | 1 | 25.00% |
Total | 49 | 100.00% | 4 | 100.00% |