diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-20 10:51:35 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-20 14:47:08 +0100 |
commit | 0eeef0a4d328b0da543c44678d00cfb7546b11a1 (patch) | |
tree | ab2c4c9c522bc6c7a284b794fe2b7a41d2664a73 /hw/display/omap_lcdc.c | |
parent | d7ef71ef421d7ea481587b11c4cb8d25718baa4b (diff) | |
download | qemu-0eeef0a4d328b0da543c44678d00cfb7546b11a1.zip qemu-0eeef0a4d328b0da543c44678d00cfb7546b11a1.tar.gz qemu-0eeef0a4d328b0da543c44678d00cfb7546b11a1.tar.bz2 |
Remove unnecessary cast when using the cpu_[physical]_memory API
This commit was produced with the included Coccinelle script
scripts/coccinelle/exec_rw_const.
Suggested-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/display/omap_lcdc.c')
-rw-r--r-- | hw/display/omap_lcdc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/display/omap_lcdc.c b/hw/display/omap_lcdc.c index 6ad13f2..fa4a381 100644 --- a/hw/display/omap_lcdc.c +++ b/hw/display/omap_lcdc.c @@ -91,9 +91,9 @@ static void omap_update_display(void *opaque) frame_offset = 0; if (omap_lcd->plm != 2) { - cpu_physical_memory_read(omap_lcd->dma->phys_framebuffer[ - omap_lcd->dma->current_frame], - (void *)omap_lcd->palette, 0x200); + cpu_physical_memory_read( + omap_lcd->dma->phys_framebuffer[omap_lcd->dma->current_frame], + omap_lcd->palette, 0x200); switch (omap_lcd->palette[0] >> 12 & 7) { case 3 ... 7: frame_offset += 0x200; @@ -244,8 +244,8 @@ static void omap_lcd_update(struct omap_lcd_panel_s *s) { if (s->plm != 2 && !s->palette_done) { cpu_physical_memory_read( - s->dma->phys_framebuffer[s->dma->current_frame], - (void *)s->palette, 0x200); + s->dma->phys_framebuffer[s->dma->current_frame], + s->palette, 0x200); s->palette_done = 1; omap_lcd_interrupts(s); } |