mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
ui: use enum to string helpers
Minor code simplification. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-id: 20180801092508.4927-1-marcandre.lureau@redhat.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
0ae0b069aa
commit
c809d1d2f4
2 changed files with 4 additions and 4 deletions
|
@ -2319,7 +2319,7 @@ bool qemu_display_find_default(DisplayOptions *opts)
|
|||
|
||||
for (i = 0; i < ARRAY_SIZE(prio); i++) {
|
||||
if (dpys[prio[i]] == NULL) {
|
||||
ui_module_load_one(DisplayType_lookup.array[prio[i]]);
|
||||
ui_module_load_one(DisplayType_str(prio[i]));
|
||||
}
|
||||
if (dpys[prio[i]] == NULL) {
|
||||
continue;
|
||||
|
@ -2337,11 +2337,11 @@ void qemu_display_early_init(DisplayOptions *opts)
|
|||
return;
|
||||
}
|
||||
if (dpys[opts->type] == NULL) {
|
||||
ui_module_load_one(DisplayType_lookup.array[opts->type]);
|
||||
ui_module_load_one(DisplayType_str(opts->type));
|
||||
}
|
||||
if (dpys[opts->type] == NULL) {
|
||||
error_report("Display '%s' is not available.",
|
||||
DisplayType_lookup.array[opts->type]);
|
||||
DisplayType_str(opts->type));
|
||||
exit(1);
|
||||
}
|
||||
if (dpys[opts->type]->early_init) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue