Release 4.11 arch/arm/mach-imx/cpuidle.h
/*
* Copyright 2012 Freescale Semiconductor, Inc.
* Copyright 2012 Linaro Ltd.
*
* The code contained herein is licensed under the GNU General Public
* License. You may obtain a copy of the GNU General Public License
* Version 2 or later at the following locations:
*
* http://www.opensource.org/licenses/gpl-license.html
* http://www.gnu.org/copyleft/gpl.html
*/
#ifdef CONFIG_CPU_IDLE
extern int imx5_cpuidle_init(void);
extern int imx6q_cpuidle_init(void);
extern int imx6sl_cpuidle_init(void);
extern int imx6sx_cpuidle_init(void);
#else
static inline int imx5_cpuidle_init(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Robert Lee | 9 | 75.00% | 1 | 50.00% |
Daniel Lezcano | 3 | 25.00% | 1 | 50.00% |
Total | 12 | 100.00% | 2 | 100.00% |
static inline int imx6q_cpuidle_init(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Shawn Guo | 11 | 91.67% | 1 | 50.00% |
Daniel Lezcano | 1 | 8.33% | 1 | 50.00% |
Total | 12 | 100.00% | 2 | 100.00% |
static inline int imx6sl_cpuidle_init(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anson Huang | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static inline int imx6sx_cpuidle_init(void)
{
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anson Huang | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anson Huang | 38 | 45.24% | 2 | 40.00% |
Robert Lee | 22 | 26.19% | 1 | 20.00% |
Shawn Guo | 18 | 21.43% | 1 | 20.00% |
Daniel Lezcano | 6 | 7.14% | 1 | 20.00% |
Total | 84 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.