Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / arch / arm / mach-imx / cpuidle.h
blob786f98ecc14578630bdb9351b388135fb51aebad
1 /*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 * Copyright 2012 Linaro Ltd.
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
13 #ifdef CONFIG_CPU_IDLE
14 extern int imx5_cpuidle_init(void);
15 extern int imx6q_cpuidle_init(void);
16 #else
17 static inline int imx5_cpuidle_init(void)
19 return 0;
21 static inline int imx6q_cpuidle_init(void)
23 return 0;
25 #endif