Re: [PATCH v3 1/4] hw/isa: add function to check for existence of device by its type

2022-02-27 Thread Liav Albani
On 2/27/22 09:27, Ani Sinha wrote: On Sat, 26 Feb 2022, Liav Albani wrote: This function enumerates all attached ISA devices in the machine, and tries to compare a given device type name to the enumerated devices. For example, this can help other code to determine if a i8042 controller exist

Re: [PATCH v3 1/4] hw/isa: add function to check for existence of device by its type

2022-02-26 Thread Ani Sinha
On Sat, 26 Feb 2022, Liav Albani wrote: > This function enumerates all attached ISA devices in the machine, and > tries to compare a given device type name to the enumerated devices. > For example, this can help other code to determine if a i8042 controller > exists in the machine. > > Signed-o

[PATCH v3 1/4] hw/isa: add function to check for existence of device by its type

2022-02-25 Thread Liav Albani
This function enumerates all attached ISA devices in the machine, and tries to compare a given device type name to the enumerated devices. For example, this can help other code to determine if a i8042 controller exists in the machine. Signed-off-by: Liav Albani --- hw/isa/isa-bus.c | 23