atmel.h 374 B

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