Re: [PATCH 4/6] exec/cpu-common: Do not restrict CPU to 32-bit memory access maximum

2020-06-01 Thread Philippe Mathieu-Daudé
On 5/31/20 9:41 PM, Peter Maydell wrote: > On Sun, 31 May 2020 at 18:54, Philippe Mathieu-Daudé wrote: >> >> Most CPUs can do 64-bit operations. Update the CPUReadMemoryFunc >> and CPUWriteMemoryFunc prototypes. >> >> Signed-off-by: Philippe Mathieu-Daudé >> --- >> include/exec/cpu-common.h | 4

Re: [PATCH 4/6] exec/cpu-common: Do not restrict CPU to 32-bit memory access maximum

2020-05-31 Thread Peter Maydell
On Sun, 31 May 2020 at 18:54, Philippe Mathieu-Daudé wrote: > > Most CPUs can do 64-bit operations. Update the CPUReadMemoryFunc > and CPUWriteMemoryFunc prototypes. > > Signed-off-by: Philippe Mathieu-Daudé > --- > include/exec/cpu-common.h | 4 ++-- > hw/usb/hcd-musb.c | 12 ++

[PATCH 4/6] exec/cpu-common: Do not restrict CPU to 32-bit memory access maximum

2020-05-31 Thread Philippe Mathieu-Daudé
Most CPUs can do 64-bit operations. Update the CPUReadMemoryFunc and CPUWriteMemoryFunc prototypes. Signed-off-by: Philippe Mathieu-Daudé --- include/exec/cpu-common.h | 4 ++-- hw/usb/hcd-musb.c | 12 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/include/e