[Qemu-devel] [PATCH] vga: Fix type of map_addr/end.

2011-06-14 Thread Richard Henderson
These addresses have been passed through pci_to_cpu_addr, and thus need to be full target_phys_addr_t. Signed-off-by: Richard Henderson r...@twiddle.net Cc: Jan Kiszka jan.kis...@siemens.com --- hw/vga_int.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Jan's recent patch series

Re: [Qemu-devel] [PATCH] vga: Fix type of map_addr/end.

2011-06-14 Thread Jan Kiszka
On 2011-06-14 19:44, Richard Henderson wrote: These addresses have been passed through pci_to_cpu_addr, and thus need to be full target_phys_addr_t. Basically correct, but you also need to change the types of lfb_addr/end, no? Signed-off-by: Richard Henderson r...@twiddle.net Cc: Jan

Re: [Qemu-devel] [PATCH] vga: Fix type of map_addr/end.

2011-06-14 Thread Richard Henderson
On 06/14/2011 11:14 AM, Jan Kiszka wrote: On 2011-06-14 19:44, Richard Henderson wrote: These addresses have been passed through pci_to_cpu_addr, and thus need to be full target_phys_addr_t. Basically correct, but you also need to change the types of lfb_addr/end, no? Ah, yes, I see that