crypto: sha-s390 - Fix warnings in import function
[pandora-kernel.git] / arch / s390 / power / swsusp.c
1 /*
2  * Support for suspend and resume on s390
3  *
4  * Copyright IBM Corp. 2009
5  *
6  * Author(s): Hans-Joachim Picht <hans@linux.vnet.ibm.com>
7  *
8  */
9
10
11 /*
12  * save CPU registers before creating a hibernation image and before
13  * restoring the memory state from it
14  */
15 void save_processor_state(void)
16 {
17         /* implentation contained in the
18          * swsusp_arch_suspend function
19          */
20 }
21
22 /*
23  * restore the contents of CPU registers
24  */
25 void restore_processor_state(void)
26 {
27         /* implentation contained in the
28          * swsusp_arch_resume function
29          */
30 }