ia64/xen-unstable
changeset 14190:44048a3f7caa
hvm/ia64: Fix IDE PIO acceleration.
Signed-off-by: Kouya Shimura <kouya@jp.fujitsu.com>
Signed-off-by: Kouya Shimura <kouya@jp.fujitsu.com>
author | kfraser@localhost.localdomain |
---|---|
date | Thu Mar 01 10:24:19 2007 +0000 (2007-03-01) |
parents | d5c4d43da89e |
children | a5b5279d2ba3 |
files | tools/ioemu/hw/ide.c |
line diff
1.1 --- a/tools/ioemu/hw/ide.c Thu Mar 01 10:01:51 2007 +0000 1.2 +++ b/tools/ioemu/hw/ide.c Thu Mar 01 10:24:19 2007 +0000 1.3 @@ -504,7 +504,7 @@ static inline void 1.4 buffered_pio_write(IDEState *s, uint32_t addr, int size) 1.5 { 1.6 struct pio_buffer *piobuf = piobuf_by_addr(addr); 1.7 - uint32_t data_end; 1.8 + int data_end; 1.9 1.10 if (!piobuf) 1.11 return; 1.12 @@ -523,7 +523,7 @@ static inline void 1.13 buffered_pio_read(IDEState *s, uint32_t addr, int size) 1.14 { 1.15 struct pio_buffer *piobuf = piobuf_by_addr(addr); 1.16 - uint32_t data_end; 1.17 + int data_end; 1.18 1.19 if (!piobuf) 1.20 return;