aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/manage.c
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <[email protected]>2008-05-29 08:02:19 +0000
committerIngo Molnar <[email protected]>2008-06-02 10:14:16 +0000
commitc78277288e3d561d55fb48bc0fe8d6e2cf4d0880 (patch)
tree315e86ee65ffbcebd331aef0544db2612a9e8b77 /drivers/xen/manage.c
parentxen: fix "xen: implement save/restore" (diff)
downloadkernel-c78277288e3d561d55fb48bc0fe8d6e2cf4d0880.tar.gz
kernel-c78277288e3d561d55fb48bc0fe8d6e2cf4d0880.zip
CONFIG_PM_SLEEP fix: xen: fix compilation when CONFIG_PM_SLEEP is disabled
Xen save/restore depends on CONFIG_PM_SLEEP being set for device_power_up/down. Signed-off-by: Jeremy Fitzhardinge <[email protected]> Acked-by: Randy Dunlap <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'drivers/xen/manage.c')
-rw-r--r--drivers/xen/manage.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c
index 675c3dd23962..5b546e365f00 100644
--- a/drivers/xen/manage.c
+++ b/drivers/xen/manage.c
@@ -31,6 +31,7 @@ enum shutdown_state {
/* Ignore multiple shutdown requests. */
static enum shutdown_state shutting_down = SHUTDOWN_INVALID;
+#ifdef CONFIG_PM_SLEEP
static int xen_suspend(void *data)
{
int *cancelled = data;
@@ -121,6 +122,7 @@ out:
#endif
shutting_down = SHUTDOWN_INVALID;
}
+#endif /* CONFIG_PM_SLEEP */
static void shutdown_handler(struct xenbus_watch *watch,
const char **vec, unsigned int len)