qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Changed the type of val argument of the function gt64120_writel() from uint32_t to uint64_t, so change the corresponding bswap32() to bswap64().
@ 2011-09-26  6:22 Ray Wang
  2011-09-26  9:46 ` Peter Maydell
  0 siblings, 1 reply; 4+ messages in thread
From: Ray Wang @ 2011-09-26  6:22 UTC (permalink / raw)
  To: qemu-devel; +Cc: raywang

From: Xianlei Wang <raywang@linux.vnet.ibm.com>


Signed-off-by: Xianlei Wang <raywang@linux.vnet.ibm.com>
---
 hw/gt64xxx.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c
index 1c34253..d0a31d2 100644
--- a/hw/gt64xxx.c
+++ b/hw/gt64xxx.c
@@ -312,7 +312,7 @@ static void gt64120_writel (void *opaque, target_phys_addr_t addr,
     uint32_t saddr;
 
     if (!(s->regs[GT_CPU] & 0x00001000))
-        val = bswap32(val);
+        val = bswap64(val);
 
     saddr = (addr & 0xfff) >> 2;
     switch (saddr) {
@@ -533,7 +533,7 @@ static void gt64120_writel (void *opaque, target_phys_addr_t addr,
         break;
     case GT_PCI0_CFGDATA:
         if (!(s->regs[GT_PCI0_CMD] & 1) && (s->pci.config_reg & 0x00fff800))
-            val = bswap32(val);
+            val = bswap64(val);
         if (s->pci.config_reg & (1u << 31))
             pci_data_write(s->pci.bus, s->pci.config_reg, val, 4);
         break;
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-09-27 11:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-26  6:22 [Qemu-devel] [PATCH] Changed the type of val argument of the function gt64120_writel() from uint32_t to uint64_t, so change the corresponding bswap32() to bswap64() Ray Wang
2011-09-26  9:46 ` Peter Maydell
2011-09-27  1:20   ` Ray Wang
2011-09-27 11:15     ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).