aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-02-09 08:46:16 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-02-15 15:53:12 +0100
commit77599a696df748e89b8f6610fe8dafaa6986729d (patch)
tree2274d327a0ce3e8a32ac9339242c40313a34fec9 /hw
parente1152f8166d34c36a1dec4c3e6532be02411a1ad (diff)
downloadqemu-77599a696df748e89b8f6610fe8dafaa6986729d.zip
qemu-77599a696df748e89b8f6610fe8dafaa6986729d.tar.gz
qemu-77599a696df748e89b8f6610fe8dafaa6986729d.tar.bz2
hw/misc/mips: Reduce itc_reconfigure() scope
Previous commit removed the MT*C0(SAAR) helpers which were the only calls to itc_reconfigure() out of hw/, we can reduce its scope and declare it statically. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240209090513.9401-3-philmd@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r--hw/misc/mips_itu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/mips_itu.c b/hw/misc/mips_itu.c
index 37aea0e..db1220f 100644
--- a/hw/misc/mips_itu.c
+++ b/hw/misc/mips_itu.c
@@ -86,7 +86,7 @@ static uint64_t itc_tag_read(void *opaque, hwaddr addr, unsigned size)
return tag->ITCAddressMap[index];
}
-void itc_reconfigure(MIPSITUState *tag)
+static void itc_reconfigure(MIPSITUState *tag)
{
uint64_t *am = &tag->ITCAddressMap[0];
MemoryRegion *mr = &tag->storage_io;