mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
vl: Remove unused variable in configure_accelerators
The accel_initialised variable no longer has any setters.
Fixes: 6f6e1698a6
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed by: Aleksandar Markovic <amarkovic@wavecomp.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
00b5032ead
commit
7970dc12e9
1 changed files with 1 additions and 2 deletions
3
vl.c
3
vl.c
|
@ -2756,7 +2756,6 @@ static void configure_accelerators(const char *progname)
|
||||||
{
|
{
|
||||||
const char *accel;
|
const char *accel;
|
||||||
char **accel_list, **tmp;
|
char **accel_list, **tmp;
|
||||||
bool accel_initialised = false;
|
|
||||||
bool init_failed = false;
|
bool init_failed = false;
|
||||||
|
|
||||||
qemu_opts_foreach(qemu_find_opts("icount"),
|
qemu_opts_foreach(qemu_find_opts("icount"),
|
||||||
|
@ -2783,7 +2782,7 @@ static void configure_accelerators(const char *progname)
|
||||||
|
|
||||||
accel_list = g_strsplit(accel, ":", 0);
|
accel_list = g_strsplit(accel, ":", 0);
|
||||||
|
|
||||||
for (tmp = accel_list; !accel_initialised && tmp && *tmp; tmp++) {
|
for (tmp = accel_list; tmp && *tmp; tmp++) {
|
||||||
/*
|
/*
|
||||||
* Filter invalid accelerators here, to prevent obscenities
|
* Filter invalid accelerators here, to prevent obscenities
|
||||||
* such as "-machine accel=tcg,,thread=single".
|
* such as "-machine accel=tcg,,thread=single".
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue