diff options
author | Anthony PERARD <anthony.perard@citrix.com> | 2014-11-14 17:35:29 +0000 |
---|---|---|
committer | lersek <lersek@Edk2> | 2014-11-14 17:35:29 +0000 |
commit | cec6ad0a4082545fa9f8d2b8e7612daa96f6672d (patch) | |
tree | 735403c6b01f42c17fa7506c46fd9cd575dabfbb /OvmfPkg/XenBusDxe/XenHypercall.h | |
parent | c47a842e411b79b717e00dd456ea79a893b3079e (diff) | |
download | edk2-platforms-cec6ad0a4082545fa9f8d2b8e7612daa96f6672d.tar.xz |
OvmfPkg/XenBusDxe: Fix some types.
This patch replace some types in GrantTable and the argument Index of
XenHypercallHvmGetParam to what the types should be.
This avoid to have type cast in code.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Build-tested-by: Scott Duplichan <scott@notabs.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16391 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/XenBusDxe/XenHypercall.h')
-rw-r--r-- | OvmfPkg/XenBusDxe/XenHypercall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/XenBusDxe/XenHypercall.h b/OvmfPkg/XenBusDxe/XenHypercall.h index 3627b1886c..9cac17da2b 100644 --- a/OvmfPkg/XenBusDxe/XenHypercall.h +++ b/OvmfPkg/XenBusDxe/XenHypercall.h @@ -60,7 +60,7 @@ XenHyperpageInit ( UINT64
XenHypercallHvmGetParam (
XENBUS_DEVICE *Dev,
- INTN Index
+ UINT32 Index
);
/**
|