forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-01-31 f9004dbfff8a3fbbd7e2a88c8a4327c7f2f8e5b2
kernel/arch/arm/mach-at91/generic.h
....@@ -1,11 +1,8 @@
1
+/* SPDX-License-Identifier: GPL-2.0-only */
12 /*
23 * linux/arch/arm/mach-at91/generic.h
34 *
45 * 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.
96 */
107
118 #ifndef _AT91_GENERIC_H
....@@ -14,11 +11,13 @@
1411 #ifdef CONFIG_PM
1512 extern void __init at91rm9200_pm_init(void);
1613 extern void __init at91sam9_pm_init(void);
14
+extern void __init sam9x60_pm_init(void);
1715 extern void __init sama5_pm_init(void);
1816 extern void __init sama5d2_pm_init(void);
1917 #else
2018 static inline void __init at91rm9200_pm_init(void) { }
2119 static inline void __init at91sam9_pm_init(void) { }
20
+static inline void __init sam9x60_pm_init(void) { }
2221 static inline void __init sama5_pm_init(void) { }
2322 static inline void __init sama5d2_pm_init(void) { }
2423 #endif