From 9e486d67656630c5a4490df85b6506ee0da9740a Mon Sep 17 00:00:00 2001 From: David Gibson Date: Fri, 4 Nov 2011 12:03:35 +1100 Subject: [PATCH] Remove unnecessary casts from PCI DMA code in lsi53c895a This patch removes some unnecessary casts in the lsi53c895a device, introduced by commit 9ba4524cda1348cbe741535f77815dca6a57da05 'lsi53c895a: Use PCI DMA stub functions'. Signed-off-by: David Gibson Signed-off-by: Anthony Liguori --- hw/lsi53c895a.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/lsi53c895a.c b/hw/lsi53c895a.c index fcc27d726f..0d3a1016df 100644 --- a/hw/lsi53c895a.c +++ b/hw/lsi53c895a.c @@ -392,7 +392,7 @@ static inline uint32_t read_dword(LSIState *s, uint32_t addr) { uint32_t buf; - pci_dma_read(&s->dev, addr, (uint8_t *)&buf, 4); + pci_dma_read(&s->dev, addr, &buf, 4); return cpu_to_le32(buf); } @@ -1079,7 +1079,7 @@ again: /* 32-bit Table indirect */ offset = sxt24(addr); - pci_dma_read(&s->dev, s->dsa + offset, (uint8_t *)buf, 8); + pci_dma_read(&s->dev, s->dsa + offset, buf, 8); /* byte count is stored in bits 0:23 only */ s->dbc = cpu_to_le32(buf[0]) & 0xffffff; s->rbc = s->dbc;