summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMark Cave-Ayland2022-07-12 23:52:34 +0200
committerMark Cave-Ayland2022-07-18 20:28:46 +0200
commitc553d6c0542ea8b6de98035ad5b66488a1950e49 (patch)
treecaffd70dbf0adeba124a66a8599f63bcbf0d4222 /include
parentlasips2: introduce lasips2_mouse_port_class_init() and lasips2_mouse_port_rea... (diff)
downloadqemu-c553d6c0542ea8b6de98035ad5b66488a1950e49.tar.gz
qemu-c553d6c0542ea8b6de98035ad5b66488a1950e49.tar.xz
qemu-c553d6c0542ea8b6de98035ad5b66488a1950e49.zip
lasips2: rename LASIPS2Port irq field to birq
The existing boolean irq field in LASIPS2Port will soon be replaced by a proper qemu_irq, so rename the field to birq to allow the upcoming qemu_irq to use the irq name. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Tested-by: Helge Deller <deller@gmx.de> Acked-by: Helge Deller <deller@gmx.de> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20220712215251.7944-24-mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'include')
-rw-r--r--include/hw/input/lasips2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/input/lasips2.h b/include/hw/input/lasips2.h
index 84807bec36..4c4b471737 100644
--- a/include/hw/input/lasips2.h
+++ b/include/hw/input/lasips2.h
@@ -40,7 +40,7 @@ struct LASIPS2Port {
uint8_t control;
uint8_t buf;
bool loopback_rbne;
- bool irq;
+ bool birq;
};
#define TYPE_LASIPS2_KBD_PORT "lasips2-kbd-port"