Re: [PATCH v2 4/8] hw/misc/pvpanic: Expose MMIO interface as little-endian
Philippe Mathieu-Daudé <[email protected]>
| Newsgroups | org.nongnu.qemu-rust,org.nongnu.qemu-arm,org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
+Alex/Phil
On 24/12/25 14:46, Philippe Mathieu-Daudé wrote:
> Make the PVPanic MMIO interface behave like the ISA and PCI
> variants: access it using little endianness.
>
> Fixes: a89607c4d0e ("hw/misc/pvpanic: Add MMIO interface")
> Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
> ---
> hw/misc/pvpanic.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/hw/misc/pvpanic.c b/hw/misc/pvpanic.c
> index c83247c4087..3e60b226e18 100644
> --- a/hw/misc/pvpanic.c
> +++ b/hw/misc/pvpanic.c
> @@ -62,6 +62,7 @@ static void pvpanic_write(void *opaque, hwaddr addr, uint64_t val,
> }
>
> static const MemoryRegionOps pvpanic_ops = {
> + .endianness = DEVICE_LITTLE_ENDIAN,
> .read = pvpanic_read,
> .write = pvpanic_write,
> .impl = {