diff options
author | Gabriel L. Somlo <gsomlo@gmail.com> | 2017-06-16 14:55:16 -0400 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-23 13:35:01 +0200 |
commit | 1b8274d4f926836a4c773c310318e6039c4794a1 (patch) | |
tree | ea6bac47b000fc87f5248a238a37ec3f729c7199 /hw | |
parent | 9e507d7e7769e3bb9a8b1a713d7bb20e16757469 (diff) | |
download | qemu-1b8274d4f926836a4c773c310318e6039c4794a1.zip qemu-1b8274d4f926836a4c773c310318e6039c4794a1.tar.gz qemu-1b8274d4f926836a4c773c310318e6039c4794a1.tar.bz2 |
applesmc: fix port i/o access width
Set access width of all AppleSMC i/o regions to 1 byte, since they
all represent 8-bit-wide ports.
Signed-off-by: Gabriel Somlo <gsomlo@gmail.com>
Reviewed-by: Alexander Graf <agraf@suse.de>
Message-id: 1497639316-22202-4-git-send-email-gsomlo@gmail.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/misc/applesmc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/misc/applesmc.c b/hw/misc/applesmc.c index 0d882e8..7896812 100644 --- a/hw/misc/applesmc.c +++ b/hw/misc/applesmc.c @@ -316,12 +316,12 @@ static void applesmc_isa_realize(DeviceState *dev, Error **errp) AppleSMCState *s = APPLE_SMC(dev); memory_region_init_io(&s->io_data, OBJECT(s), &applesmc_data_io_ops, s, - "applesmc-data", 4); + "applesmc-data", 1); isa_register_ioport(&s->parent_obj, &s->io_data, s->iobase + APPLESMC_DATA_PORT); memory_region_init_io(&s->io_cmd, OBJECT(s), &applesmc_cmd_io_ops, s, - "applesmc-cmd", 4); + "applesmc-cmd", 1); isa_register_ioport(&s->parent_obj, &s->io_cmd, s->iobase + APPLESMC_CMD_PORT); |