Release 4.14 arch/arm64/include/asm/cpuidle.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_CPUIDLE_H
#define __ASM_CPUIDLE_H
#include <asm/proc-fns.h>
#ifdef CONFIG_CPU_IDLE
extern int arm_cpuidle_init(unsigned int cpu);
extern int arm_cpuidle_suspend(int index);
#else
static inline int arm_cpuidle_init(unsigned int cpu)
{
return -EOPNOTSUPP;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 14 | 93.33% | 1 | 50.00% |
Daniel Lezcano | 1 | 6.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
static inline int arm_cpuidle_suspend(int index)
{
return -EOPNOTSUPP;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 11 | 78.57% | 1 | 50.00% |
Sudeep Holla | 3 | 21.43% | 1 | 50.00% |
Total | 14 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Lorenzo Pieralisi | 56 | 86.15% | 3 | 50.00% |
Sudeep Holla | 6 | 9.23% | 1 | 16.67% |
Daniel Lezcano | 2 | 3.08% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.54% | 1 | 16.67% |
Total | 65 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.