Re: [RFC PATCH] audio: Make the AudiodevDriver enum conditional

2021-07-08 Thread Daniel P . Berrangé
On Thu, Jul 08, 2021 at 04:56:29PM +0200, Markus Armbruster wrote: > Thomas Huth writes: > > > On 25/06/2021 10.30, Daniel P. Berrangé wrote: > >> On Thu, Jun 24, 2021 at 08:37:16PM +0200, Thomas Huth wrote: > >>> This way, the upper layers like libvirt could have the possibility > >>> to use QAP

Re: [RFC PATCH] audio: Make the AudiodevDriver enum conditional

2021-07-08 Thread Markus Armbruster
Thomas Huth writes: > On 25/06/2021 10.30, Daniel P. Berrangé wrote: >> On Thu, Jun 24, 2021 at 08:37:16PM +0200, Thomas Huth wrote: >>> This way, the upper layers like libvirt could have the possibility >>> to use QAPI to find out which audio drivers have been enabled during >>> compile-time of

Re: [RFC PATCH] audio: Make the AudiodevDriver enum conditional

2021-06-25 Thread Thomas Huth
On 25/06/2021 10.30, Daniel P. Berrangé wrote: On Thu, Jun 24, 2021 at 08:37:16PM +0200, Thomas Huth wrote: This way, the upper layers like libvirt could have the possibility to use QAPI to find out which audio drivers have been enabled during compile-time of QEMU. Signed-off-by: Thomas Huth -

Re: [RFC PATCH] audio: Make the AudiodevDriver enum conditional

2021-06-25 Thread Daniel P . Berrangé
On Thu, Jun 24, 2021 at 08:37:16PM +0200, Thomas Huth wrote: > This way, the upper layers like libvirt could have the possibility > to use QAPI to find out which audio drivers have been enabled during > compile-time of QEMU. > > Signed-off-by: Thomas Huth > --- > Note: Marked as RFC since it's q

[RFC PATCH] audio: Make the AudiodevDriver enum conditional

2021-06-24 Thread Thomas Huth
This way, the upper layers like libvirt could have the possibility to use QAPI to find out which audio drivers have been enabled during compile-time of QEMU. Signed-off-by: Thomas Huth --- Note: Marked as RFC since it's quite a lot of ifdef'ing here... not sure whether I really like it...