hv: fixed by replace ull to ul.

ul is used as immediate integer suffix with type uint64_t.

Tracked-On: #3214
Signed-off-by: Huihuang Shi <huihuang.shi@intel.com>
This commit is contained in:
Huihuang Shi
2019-10-30 13:23:28 +08:00
committed by wenlingz
parent 46b157008c
commit 5d662ea11f
3 changed files with 3 additions and 3 deletions

View File

@@ -1420,7 +1420,7 @@ static int32_t vlapic_read(struct acrn_vlapic *vlapic, uint32_t offset_arg, uint
struct lapic_regs *lapic = &(vlapic->apic_page);
uint32_t i;
uint32_t offset = offset_arg;
*data = 0ULL;
*data = 0UL;
if (offset > sizeof(*lapic)) {
ret = -EACCES;