diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2015-05-07 19:55:23 +0300 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-05-18 15:38:09 +0300 |
commit | ffb7dbed47da6ac4460b606a3feee295bbe4d9e2 (patch) | |
tree | 1390dcfcaf74dce2199ef62e3cc6ec65a02c348d /arch/arm/xen | |
parent | 8746515d7f04c9ea94cf43e2db1fd2cfca93276d (diff) | |
download | linux-ffb7dbed47da6ac4460b606a3feee295bbe4d9e2.tar.xz |
xen/arm: Define xen_arch_suspend()
Commit 2b953a5e994c ("xen: Suspend ticks on all CPUs during suspend")
introduced xen_arch_suspend() routine but did so only for x86, breaking
ARM builds.
We need to add it to ARM as well.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reported-by: Michal Suchanek <hramrach@gmail.com>
Tested-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Diffstat (limited to 'arch/arm/xen')
-rw-r--r-- | arch/arm/xen/enlighten.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index 224081ccc92f..7d0f07020c80 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c @@ -272,6 +272,7 @@ void xen_arch_pre_suspend(void) { } void xen_arch_post_suspend(int suspend_cancelled) { } void xen_timer_resume(void) { } void xen_arch_resume(void) { } +void xen_arch_suspend(void) { } /* In the hypervisor.S file. */ |