xen/i386: enable the platform hypercall for i386

Not sure why the platform hypercall was disabled on i386, just enable it in
order to fix compilation of the PV timer on i386.

Sponsored by: Citrix Systems R&D
This commit is contained in:
Roger Pau Monné 2016-05-03 08:05:14 +00:00
parent f8ce3dfaf1
commit 71718d3c73
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298971

View File

@ -209,7 +209,7 @@ HYPERVISOR_set_timer_op(
unsigned long timeout_lo = (unsigned long)timeout;
return _hypercall2(long, set_timer_op, timeout_lo, timeout_hi);
}
#if 0
static inline int
HYPERVISOR_platform_op(
struct xen_platform_op *platform_op)
@ -217,7 +217,7 @@ HYPERVISOR_platform_op(
platform_op->interface_version = XENPF_INTERFACE_VERSION;
return _hypercall1(int, platform_op, platform_op);
}
#endif
static inline int
HYPERVISOR_set_debugreg(
int reg, unsigned long value)