summaryrefslogtreecommitdiffstats
path: root/include/hw
diff options
context:
space:
mode:
authorMark Cave-Ayland2022-03-05 16:09:50 +0100
committerMark Cave-Ayland2022-03-09 10:28:28 +0100
commit9d9f4eac2c8fd7a623d7b91e21d08d34ce50315d (patch)
tree599016221716958683f1578a1760378fb4d45ba4 /include/hw
parentmos6522: switch over to use qdev gpios for IRQs (diff)
downloadqemu-9d9f4eac2c8fd7a623d7b91e21d08d34ce50315d.tar.gz
qemu-9d9f4eac2c8fd7a623d7b91e21d08d34ce50315d.tar.xz
qemu-9d9f4eac2c8fd7a623d7b91e21d08d34ce50315d.zip
mos6522: remove update_irq() and set_sr_int() methods from MOS6522DeviceClass
Now that the mos6522 IRQs are managed using standard qdev gpios these methods are no longer required. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20220305150957.5053-6-mark.cave-ayland@ilande.co.uk> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/misc/mos6522.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/hw/misc/mos6522.h b/include/hw/misc/mos6522.h
index f38ae2b0f0..f0a614898e 100644
--- a/include/hw/misc/mos6522.h
+++ b/include/hw/misc/mos6522.h
@@ -140,10 +140,8 @@ struct MOS6522DeviceClass {
DeviceClass parent_class;
DeviceReset parent_reset;
- void (*set_sr_int)(MOS6522State *dev);
void (*portB_write)(MOS6522State *dev);
void (*portA_write)(MOS6522State *dev);
- void (*update_irq)(MOS6522State *dev);
/* These are used to influence the CUDA MacOS timebase calibration */
uint64_t (*get_timer1_counter_value)(MOS6522State *dev, MOS6522Timer *ti);
uint64_t (*get_timer2_counter_value)(MOS6522State *dev, MOS6522Timer *ti);