Re: [Qemu-devel] [PATCH] pxa27x: Reduce size of keyboard matrix mapping

2013-12-22 Thread Peter Maydell
On 22 December 2013 14:32, Stefan Weil wrote: > The row and column values use only a very limited range (-1 ... 7), > so a byte value is sufficient. > > Signed-off-by: Stefan Weil It's not like we have a ton of pxa2xx keymaps eating up space, but yeah, this is an OK change. Reviewed-by: Peter M

[Qemu-devel] [PATCH] pxa27x: Reduce size of keyboard matrix mapping

2013-12-22 Thread Stefan Weil
The row and column values use only a very limited range (-1 ... 7), so a byte value is sufficient. Signed-off-by: Stefan Weil --- include/hw/arm/pxa.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hw/arm/pxa.h b/include/hw/arm/pxa.h index d146c58..7ca330a 100