From: Juan Quintela Date: Thu, 2 Dec 2010 15:01:57 +0000 (+0100) Subject: pxa2xx_lcd: up field is used as a bool and migrated as an uint8_t X-Git-Tag: v0.15.0-rc0~384 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=469954090ff1a11285a29c4e03df09c128ebc5bc;p=thirdparty%2Fqemu.git pxa2xx_lcd: up field is used as a bool and migrated as an uint8_t Signed-off-by: Juan Quintela --- diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c index 9a193474e03..55e95be766b 100644 --- a/hw/pxa2xx_lcd.c +++ b/hw/pxa2xx_lcd.c @@ -17,7 +17,7 @@ struct DMAChannel { target_phys_addr_t branch; - int up; + uint8_t up; uint8_t palette[1024]; uint8_t pbuffer[1024]; void (*redraw)(PXA2xxLCDState *s, target_phys_addr_t addr,