diff options
author | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-24 14:40:46 +0100 |
---|---|---|
committer | Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> | 2022-06-26 18:40:12 +0100 |
commit | 52b28f76dd5d1a44c0d3632a98987e5c771cf251 (patch) | |
tree | 0874696dbe17acbca7568a62f3476de9e7bb4d1d /hw | |
parent | 488d1537a1f59018db57ea8293a7084e8ee71a86 (diff) | |
download | qemu-52b28f76dd5d1a44c0d3632a98987e5c771cf251.zip qemu-52b28f76dd5d1a44c0d3632a98987e5c771cf251.tar.gz qemu-52b28f76dd5d1a44c0d3632a98987e5c771cf251.tar.bz2 |
ps2: make ps2_raise_irq() function static
This function is no longer used outside of ps2.c and so can be declared static.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Acked-by: Helge Deller <deller@gmx.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20220624134109.881989-32-mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/input/ps2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/input/ps2.c b/hw/input/ps2.c index 9c046ac..24c9853 100644 --- a/hw/input/ps2.c +++ b/hw/input/ps2.c @@ -172,7 +172,7 @@ void ps2_queue_noirq(PS2State *s, int b) q->count++; } -void ps2_raise_irq(PS2State *s) +static void ps2_raise_irq(PS2State *s) { s->update_irq(s->update_arg, 1); } |