diff options
author | Paolo Bonzini | 2015-04-08 13:53:29 +0200 |
---|---|---|
committer | Paolo Bonzini | 2015-06-05 17:36:31 +0200 |
commit | e98094221ec336fcfd0c72c66f280f1cabb16c72 (patch) | |
tree | 4cefc539600ab48bb4834795d87ca51afc12257f /hw/arm/virt.c | |
parent | target-i386: wake up processors that receive an SMI (diff) | |
download | qemu-e98094221ec336fcfd0c72c66f280f1cabb16c72.tar.gz qemu-e98094221ec336fcfd0c72c66f280f1cabb16c72.tar.xz qemu-e98094221ec336fcfd0c72c66f280f1cabb16c72.zip |
pflash_cfi01: change big-endian property to BIT type
Make this consistent with the secure property, added in the next patch.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/arm/virt.c')
-rw-r--r-- | hw/arm/virt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 0a75cc83ee..1b1cc716ad 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -555,7 +555,7 @@ static void create_one_flash(const char *name, hwaddr flashbase, qdev_prop_set_uint64(dev, "sector-length", sectorlength); qdev_prop_set_uint8(dev, "width", 4); qdev_prop_set_uint8(dev, "device-width", 2); - qdev_prop_set_uint8(dev, "big-endian", 0); + qdev_prop_set_bit(dev, "big-endian", false); qdev_prop_set_uint16(dev, "id0", 0x89); qdev_prop_set_uint16(dev, "id1", 0x18); qdev_prop_set_uint16(dev, "id2", 0x00); |