mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
system: Replace arch_type global by qemu_arch_available() helper
qemu_arch_available() is a bit simpler to understand while reviewing than the undocumented arch_type variable. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20250305005225.95051-5-philmd@linaro.org>
This commit is contained in:
parent
5dc4337f79
commit
44ac8eaff0
5 changed files with 11 additions and 8 deletions
|
@ -132,7 +132,7 @@ static const char *qdev_class_get_alias(DeviceClass *dc)
|
|||
|
||||
for (i = 0; qdev_alias_table[i].typename; i++) {
|
||||
if (qdev_alias_table[i].arch_mask &&
|
||||
!(qdev_alias_table[i].arch_mask & arch_type)) {
|
||||
!qemu_arch_available(qdev_alias_table[i].arch_mask)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -218,7 +218,7 @@ static const char *find_typename_by_alias(const char *alias)
|
|||
|
||||
for (i = 0; qdev_alias_table[i].alias; i++) {
|
||||
if (qdev_alias_table[i].arch_mask &&
|
||||
!(qdev_alias_table[i].arch_mask & arch_type)) {
|
||||
!qemu_arch_available(qdev_alias_table[i].arch_mask)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue