1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * atmel platform data 4 */ 5 6 #ifndef __ATMEL_H__ 7 #define __ATMEL_H__ 8 9 /* FIXME: this needs a better location, but gets stuff building again */ 10 #ifdef CONFIG_ATMEL_PM 11 extern int at91_suspend_entering_slow_clock(void); 12 #else at91_suspend_entering_slow_clock(void)13static inline int at91_suspend_entering_slow_clock(void) 14 { 15 return 0; 16 } 17 #endif 18 19 #endif /* __ATMEL_H__ */ 20