diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-19 20:28:22 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-20 14:47:08 +0100 |
commit | b7cbebf2b9d7aa8854cfd6a45484e160244e9f48 (patch) | |
tree | bc79526f8e8936820d3a52fdef813a18221fb2c4 /target/i386/whpx-all.c | |
parent | 4ef044cb148a5238161310f06bc581aeed70059f (diff) | |
download | qemu-b7cbebf2b9d7aa8854cfd6a45484e160244e9f48.zip qemu-b7cbebf2b9d7aa8854cfd6a45484e160244e9f48.tar.gz qemu-b7cbebf2b9d7aa8854cfd6a45484e160244e9f48.tar.bz2 |
Remove unnecessary cast when using the address_space API
This commit was produced with the included Coccinelle script
scripts/coccinelle/exec_rw_const.
Two lines in hw/net/dp8393x.c that Coccinelle produced that
were over 80 characters were re-wrapped by hand.
Suggested-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'target/i386/whpx-all.c')
-rw-r--r-- | target/i386/whpx-all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/whpx-all.c b/target/i386/whpx-all.c index 3ed2aa1..0a1f244 100644 --- a/target/i386/whpx-all.c +++ b/target/i386/whpx-all.c @@ -540,7 +540,7 @@ static HRESULT CALLBACK whpx_emu_ioport_callback( { MemTxAttrs attrs = { 0 }; address_space_rw(&address_space_io, IoAccess->Port, attrs, - (uint8_t *)&IoAccess->Data, IoAccess->AccessSize, + &IoAccess->Data, IoAccess->AccessSize, IoAccess->Direction); return S_OK; } |