aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/pda_power.h
diff options
context:
space:
mode:
authorDaniel Mack <daniel@caiaq.de>2010-04-12 17:33:22 -0400
committerAnton Vorontsov <cbouatmailru@gmail.com>2010-04-16 11:14:34 -0400
commita3bcbbee83f55cbaec9b2ad748e7300c7feb2192 (patch)
tree76f253affed1fc8da36b6e7dccbed626dc6dbcd5 /include/linux/pda_power.h
parentb5874f33bbaf00586d05de37706491ee37057e11 (diff)
pda_power: Add function callbacks for suspend and resume
Add function prototypes for power management events so they can be handled and used by platform implementations. Signed-off-by: Daniel Mack <daniel@caiaq.de> Cc: Dmitry Baryshkov <dbaryshkov@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'include/linux/pda_power.h')
-rw-r--r--include/linux/pda_power.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/pda_power.h b/include/linux/pda_power.h
index d4cf7a2ceb3e..c9e4d814ff77 100644
--- a/include/linux/pda_power.h
+++ b/include/linux/pda_power.h
@@ -24,6 +24,8 @@ struct pda_power_pdata {
24 int (*is_usb_online)(void); 24 int (*is_usb_online)(void);
25 void (*set_charge)(int flags); 25 void (*set_charge)(int flags);
26 void (*exit)(struct device *dev); 26 void (*exit)(struct device *dev);
27 int (*suspend)(pm_message_t state);
28 int (*resume)(void);
27 29
28 char **supplied_to; 30 char **supplied_to;
29 size_t num_supplicants; 31 size_t num_supplicants;