diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-02 15:25:25 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-06 17:01:11 +0200 |
commit | 2336172d9b396b4fa4483712f5560a563c25352f (patch) | |
tree | 6cf6abe7fc96439090163e5b22b4dd245fef7543 /include/hw/audio | |
parent | 59e75839057ec6e13538ef8b89aadfd9f237dc12 (diff) |
audio: set default value for pcspk.iobase property
Allows dropping the explicit qdev_prop_set_uint32 call in pcspk_init.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20200702132525.6849-21-kraxel@redhat.com
Diffstat (limited to 'include/hw/audio')
-rw-r--r-- | include/hw/audio/pcspk.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/hw/audio/pcspk.h b/include/hw/audio/pcspk.h index 8b48560267..06cba00b83 100644 --- a/include/hw/audio/pcspk.h +++ b/include/hw/audio/pcspk.h @@ -33,11 +33,7 @@ static inline void pcspk_init(ISADevice *isadev, ISABus *bus, ISADevice *pit) { - DeviceState *dev; - - dev = DEVICE(isadev); - qdev_prop_set_uint32(dev, "iobase", 0x61); - object_property_set_link(OBJECT(dev), OBJECT(pit), "pit", NULL); + object_property_set_link(OBJECT(isadev), OBJECT(pit), "pit", NULL); isa_realize_and_unref(isadev, bus, &error_fatal); } |