mirror of https://github.com/xemu-project/xemu.git
Fix load width for slave address in i2c_bus_load (Chris Lalancette).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4966 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
9ad97e6503
commit
d0c22f49ba
2
hw/i2c.c
2
hw/i2c.c
|
@ -33,7 +33,7 @@ static int i2c_bus_load(QEMUFile *f, void *opaque, int version_id)
|
||||||
|
|
||||||
/* The bus is loaded before attached devices, so load and save the
|
/* The bus is loaded before attached devices, so load and save the
|
||||||
current device id. Devices will check themselves as loaded. */
|
current device id. Devices will check themselves as loaded. */
|
||||||
bus->saved_address = qemu_get_be32(f);
|
bus->saved_address = (int8_t) qemu_get_byte(f);
|
||||||
bus->current_dev = NULL;
|
bus->current_dev = NULL;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue