qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-trivial] [Qemu-devel] [PATCH] hw/pc.c: add ULL suffix in iopor


From: Stefan Weil
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH] hw/pc.c: add ULL suffix in ioport80_read and ioportF0_read return value
Date: Sat, 12 Jan 2013 07:37:20 +0100
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130106 Thunderbird/17.0.2

Am 11.01.2013 17:41, schrieb Julien Grall:
The commit c02e1eac887b1b0aee7361b1fcf889e7d47fed9d broke the compilation
for i386. ULL need to be specify for uint64_t value.

Signed-off-by: Julien Grall <address@hidden>
---
  hw/pc.c |    4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/pc.c b/hw/pc.c
index dfa3144..ba1f19d 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -105,7 +105,7 @@ static void ioport80_write(void *opaque, hwaddr addr, 
uint64_t data,
static uint64_t ioport80_read(void *opaque, hwaddr addr, unsigned size)
  {
-    return 0xffffffffffffffff;
+    return 0xffffffffffffffffULL;
  }
/* MSDOS compatibility mode FPU exception support */
@@ -130,7 +130,7 @@ static void ioportF0_write(void *opaque, hwaddr addr, 
uint64_t data,
static uint64_t ioportF0_read(void *opaque, hwaddr addr, unsigned size)
  {
-    return 0xffffffffffffffff;
+    return 0xffffffffffffffffULL;
  }
/* TSC handling */


Better: use UINT64_MAX. Then reviewers don't have to count 'f's.

As this patch is a build fix, it should be committed directly without
waiting for a qemu-trivial pull request.

Stefan




reply via email to

[Prev in Thread] Current Thread [Next in Thread]