]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/x86/xen/suspend_hvm.c
ARM: dts: imx6ul-txul: enable I2C bus recovery
[karo-tx-linux.git] / arch / x86 / xen / suspend_hvm.c
1 #include <linux/types.h>
2
3 #include <xen/xen.h>
4 #include <xen/features.h>
5 #include <xen/interface/features.h>
6
7 #include "xen-ops.h"
8
9 void xen_hvm_post_suspend(int suspend_cancelled)
10 {
11         if (!suspend_cancelled) {
12                 xen_hvm_init_shared_info();
13                 xen_vcpu_restore();
14         }
15         xen_callback_vector();
16         xen_unplug_emulated_devices();
17 }