aboutsummaryrefslogtreecommitdiffstats
path: root/unmodified_drivers
diff options
context:
space:
mode:
authorawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>2007-03-12 08:40:57 -0600
committerawilliam@xenbuild2.aw <awilliam@xenbuild2.aw>2007-03-12 08:40:57 -0600
commitbbe39297b5ae9d618a4f71268546e04fc8f37165 (patch)
tree557e5e94ecdafdbba2b862f312dcac14be201294 /unmodified_drivers
parent115488f1ea6f28cd860c97709b86255575be1131 (diff)
downloadxen-bbe39297b5ae9d618a4f71268546e04fc8f37165.tar.gz
xen-bbe39297b5ae9d618a4f71268546e04fc8f37165.tar.bz2
xen-bbe39297b5ae9d618a4f71268546e04fc8f37165.zip
[IA64] Fix for compiling PV-on-HVM driver on IPF
Signed-off-by: Tsunehisa Doi <Doi.Tsunehisa@jp.fujitsu.com>
Diffstat (limited to 'unmodified_drivers')
-rw-r--r--unmodified_drivers/linux-2.6/platform-pci/xen_support.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/unmodified_drivers/linux-2.6/platform-pci/xen_support.c b/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
index 589d8365ec..431115a8cc 100644
--- a/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
+++ b/unmodified_drivers/linux-2.6/platform-pci/xen_support.c
@@ -45,7 +45,13 @@ unsigned long __hypercall(unsigned long a1, unsigned long a2,
return __res;
}
EXPORT_SYMBOL(__hypercall);
-#endif
+
+int HYPERVISOR_grant_table_op(unsigned int cmd, void *uop, unsigned int count)
+{
+ return xencomm_mini_hypercall_grant_table_op(cmd, uop, count);
+}
+EXPORT_SYMBOL(HYPERVISOR_grant_table_op);
+#endif /* __ia64__ */
void xen_machphys_update(unsigned long mfn, unsigned long pfn)
{