aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2025-01-02 14:53:15 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-01-09 18:16:27 +0100
commit5f396935f8f1628005ef14a3c4c3dc84c6aa3d96 (patch)
treeb77bfca83e5bbf25aecad531f552cef78c9e46e3
parentbc4e7522ad19890eab8cf1df04360abf610b1236 (diff)
downloadqemu-5f396935f8f1628005ef14a3c4c3dc84c6aa3d96.zip
qemu-5f396935f8f1628005ef14a3c4c3dc84c6aa3d96.tar.gz
qemu-5f396935f8f1628005ef14a3c4c3dc84c6aa3d96.tar.bz2
system: Inline machine_containers[] in qemu_create_machine_containers()
Only qemu_create_machine_containers() uses the machine_containers[] array, restrict the scope to this single user. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Acked-by: Peter Xu <peterx@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250102211800.79235-9-philmd@linaro.org>
-rw-r--r--system/vl.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/system/vl.c b/system/vl.c
index ed1623b..be029c5 100644
--- a/system/vl.c
+++ b/system/vl.c
@@ -2113,18 +2113,16 @@ static void parse_memory_options(void)
loc_pop(&loc);
}
-static const char *const machine_containers[] = {
- "unattached",
- "peripheral",
- "peripheral-anon"
-};
-
static void qemu_create_machine_containers(Object *machine)
{
- int i;
+ static const char *const containers[] = {
+ "unattached",
+ "peripheral",
+ "peripheral-anon",
+ };
- for (i = 0; i < ARRAY_SIZE(machine_containers); i++) {
- object_property_add_new_container(machine, machine_containers[i]);
+ for (unsigned i = 0; i < ARRAY_SIZE(containers); i++) {
+ object_property_add_new_container(machine, containers[i]);
}
}