hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/arch/arm/mach-imx/cpuidle.h
....@@ -1,13 +1,7 @@
1
+/* SPDX-License-Identifier: GPL-2.0-or-later */
12 /*
23 * Copyright 2012 Freescale Semiconductor, Inc.
34 * Copyright 2012 Linaro Ltd.
4
- *
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:
8
- *
9
- * http://www.opensource.org/licenses/gpl-license.html
10
- * http://www.gnu.org/copyleft/gpl.html
115 */
126
137 #ifdef CONFIG_CPU_IDLE
....@@ -15,6 +9,7 @@
159 extern int imx6q_cpuidle_init(void);
1610 extern int imx6sl_cpuidle_init(void);
1711 extern int imx6sx_cpuidle_init(void);
12
+extern int imx7ulp_cpuidle_init(void);
1813 #else
1914 static inline int imx5_cpuidle_init(void)
2015 {
....@@ -32,4 +27,8 @@
3227 {
3328 return 0;
3429 }
30
+static inline int imx7ulp_cpuidle_init(void)
31
+{
32
+ return 0;
33
+}
3534 #endif