kirkwood-pm.h 403 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Power Management driver for Marvell Kirkwood SoCs
  4. *
  5. * Copyright (C) 2013 Ezequiel Garcia <[email protected]>
  6. * Copyright (C) 2010 Simon Guinot <[email protected]>
  7. */
  8. #ifndef __ARCH_KIRKWOOD_PM_H
  9. #define __ARCH_KIRKWOOD_PM_H
  10. #ifdef CONFIG_PM
  11. void kirkwood_pm_init(void);
  12. #else
  13. static inline void kirkwood_pm_init(void) {};
  14. #endif
  15. #endif