fs/adfs: move append_filetype_suffix() into adfs_object_fixup()
[linux-2.6/linux-2.6-arm.git] / arch / arm / mach-imx / cpuidle.h
blob7694c8f810a4355766d2b61f91b75ac81c0deae4
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 extern int imx6sl_cpuidle_init(void);
17 extern int imx6sx_cpuidle_init(void);
18 extern int imx7ulp_cpuidle_init(void);
19 #else
20 static inline int imx5_cpuidle_init(void)
22 return 0;
24 static inline int imx6q_cpuidle_init(void)
26 return 0;
28 static inline int imx6sl_cpuidle_init(void)
30 return 0;
32 static inline int imx6sx_cpuidle_init(void)
34 return 0;
36 static inline int imx7ulp_cpuidle_init(void)
38 return 0;
40 #endif