.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * linux/arch/arm/mach-at91/generic.h |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2005 David Brownell |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License version 2 as |
---|
8 | | - * published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #ifndef _AT91_GENERIC_H |
---|
.. | .. |
---|
14 | 11 | #ifdef CONFIG_PM |
---|
15 | 12 | extern void __init at91rm9200_pm_init(void); |
---|
16 | 13 | extern void __init at91sam9_pm_init(void); |
---|
| 14 | +extern void __init sam9x60_pm_init(void); |
---|
17 | 15 | extern void __init sama5_pm_init(void); |
---|
18 | 16 | extern void __init sama5d2_pm_init(void); |
---|
19 | 17 | #else |
---|
20 | 18 | static inline void __init at91rm9200_pm_init(void) { } |
---|
21 | 19 | static inline void __init at91sam9_pm_init(void) { } |
---|
| 20 | +static inline void __init sam9x60_pm_init(void) { } |
---|
22 | 21 | static inline void __init sama5_pm_init(void) { } |
---|
23 | 22 | static inline void __init sama5d2_pm_init(void) { } |
---|
24 | 23 | #endif |
---|