Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e057a4b6 authored by Stefano Stabellini's avatar Stefano Stabellini
Browse files

xen: fix compile issue if XEN is enabled but XEN_PVHVM is disabled

parent 99bbb3a8
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -28,6 +28,7 @@ void xen_pre_suspend(void)


void xen_hvm_post_suspend(int suspend_cancelled)
void xen_hvm_post_suspend(int suspend_cancelled)
{
{
#ifdef CONFIG_XEN_PVHVM
	int cpu;
	int cpu;
	xen_hvm_init_shared_info();
	xen_hvm_init_shared_info();
	xen_callback_vector();
	xen_callback_vector();
@@ -37,6 +38,7 @@ void xen_hvm_post_suspend(int suspend_cancelled)
			xen_setup_runstate_info(cpu);
			xen_setup_runstate_info(cpu);
		}
		}
	}
	}
#endif
}
}


void xen_post_suspend(int suspend_cancelled)
void xen_post_suspend(int suspend_cancelled)