Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
pm.h
Go to the documentation of this file.
1 /*
2  * Blackfin bf609 power management
3  *
4  * Copyright 2011 Analog Devices Inc.
5  *
6  * Licensed under the GPL-2
7  */
8 
9 #ifndef __PM_H__
10 #define __PM_H__
11 
12 #include <linux/suspend.h>
13 
15  void (*save)(unsigned long *);
16  void (*restore)(unsigned long *);
21 };
22 
23 extern struct bfin_cpu_pm_fns *bfin_cpu_pm;
24 
25 # ifdef CONFIG_BFIN_COREB
26 void bfin_coreb_start(void);
27 void bfin_coreb_stop(void);
28 void bfin_coreb_reset(void);
29 # endif
30 
31 #endif