.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright 2012 Freescale Semiconductor, Inc. |
---|
3 | 4 | * 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 |
---|
11 | 5 | */ |
---|
12 | 6 | |
---|
13 | 7 | #ifdef CONFIG_CPU_IDLE |
---|
.. | .. |
---|
15 | 9 | extern int imx6q_cpuidle_init(void); |
---|
16 | 10 | extern int imx6sl_cpuidle_init(void); |
---|
17 | 11 | extern int imx6sx_cpuidle_init(void); |
---|
| 12 | +extern int imx7ulp_cpuidle_init(void); |
---|
18 | 13 | #else |
---|
19 | 14 | static inline int imx5_cpuidle_init(void) |
---|
20 | 15 | { |
---|
.. | .. |
---|
32 | 27 | { |
---|
33 | 28 | return 0; |
---|
34 | 29 | } |
---|
| 30 | +static inline int imx7ulp_cpuidle_init(void) |
---|
| 31 | +{ |
---|
| 32 | + return 0; |
---|
| 33 | +} |
---|
35 | 34 | #endif |
---|