s5p-pm.c 774 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (c) 2010 Samsung Electronics Co., Ltd.
  3. * http://www.samsung.com
  4. *
  5. * S5P Power Manager (Suspend-To-RAM) support
  6. *
  7. * Based on arch/arm/plat-s3c24xx/pm.c
  8. * Copyright (c) 2004,2006 Simtec Electronics
  9. * Ben Dooks <ben@simtec.co.uk>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. */
  15. #include <linux/suspend.h>
  16. #include <plat/pm.h>
  17. #define PFX "s5p pm: "
  18. /* s3c_pm_configure_extint
  19. *
  20. * configure all external interrupt pins
  21. */
  22. void s3c_pm_configure_extint(void)
  23. {
  24. /* nothing here yet */
  25. }
  26. void s3c_pm_restore_core(void)
  27. {
  28. /* nothing here yet */
  29. }
  30. void s3c_pm_save_core(void)
  31. {
  32. /* nothing here yet */
  33. }