diff options
author | Juan Quintela <quintela@redhat.com> | 2010-12-02 16:01:57 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-04-22 14:41:43 -0500 |
commit | 469954090ff1a11285a29c4e03df09c128ebc5bc (patch) | |
tree | b38eb0101363a915eb5afff4edea31e34ff9d115 /hw/pxa2xx_lcd.c | |
parent | 2b7251e0f2e9414f2440e9b485e95f337b869d53 (diff) |
pxa2xx_lcd: up field is used as a bool and migrated as an uint8_t
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hw/pxa2xx_lcd.c')
-rw-r--r-- | hw/pxa2xx_lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c index 9a193474e0..55e95be766 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, |