diff options
author | Peter Maydell | 2021-01-15 21:11:56 +0100 |
---|---|---|
committer | Thomas Huth | 2021-01-19 09:10:00 +0100 |
commit | c8abcc87b1d61d61ca51a3cbe5002fcdee8fa724 (patch) | |
tree | e8a87a1391b2be3708a9f3c07102b67d9dcb5b4b /hw/m68k | |
parent | Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-for-6.0-pul... (diff) | |
download | qemu-c8abcc87b1d61d61ca51a3cbe5002fcdee8fa724.tar.gz qemu-c8abcc87b1d61d61ca51a3cbe5002fcdee8fa724.tar.xz qemu-c8abcc87b1d61d61ca51a3cbe5002fcdee8fa724.zip |
hw/m68k/next-cube: Make next_irq() function static
The next_irq() function is global, but isn't actually used anywhere
outside next-cube.c. Make it static.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20210115201206.17347-2-peter.maydell@linaro.org>
Signed-off-by: Thomas Huth <huth@tuxfamily.org>
Diffstat (limited to 'hw/m68k')
-rw-r--r-- | hw/m68k/next-cube.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/m68k/next-cube.c b/hw/m68k/next-cube.c index 37bc35dfa4..f622d6589c 100644 --- a/hw/m68k/next-cube.c +++ b/hw/m68k/next-cube.c @@ -724,7 +724,7 @@ static const MemoryRegionOps dma_ops = { * TODO: set the shift numbers as values in the enum, so the first switch * will not be needed */ -void next_irq(void *opaque, int number, int level) +static void next_irq(void *opaque, int number, int level) { M68kCPU *cpu = opaque; int shift = 0; |