* [Qemu-devel] [PATCH] audio: consolidate audio_init()
@ 2011-01-21 10:53 Isaku Yamahata
2011-01-21 20:44 ` [Qemu-devel] " Blue Swirl
2011-01-25 8:23 ` [Qemu-devel] " Aurelien Jarno
0 siblings, 2 replies; 6+ messages in thread
From: Isaku Yamahata @ 2011-01-21 10:53 UTC (permalink / raw)
To: qemu-devel; +Cc: Blue Swirl, yamahata
consolidate audio_init() and remove references to shoundhw.
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
---
arch_init.c | 35 ++++++++++++++++++++++++++++++++++-
arch_init.h | 1 +
hw/mips_jazz.c | 24 ++----------------------
hw/mips_malta.c | 23 ++---------------------
hw/pc.c | 17 -----------------
hw/pc.h | 3 ---
hw/pc_piix.c | 3 ++-
sysemu.h | 15 ---------------
8 files changed, 41 insertions(+), 80 deletions(-)
diff --git a/arch_init.c b/arch_init.c
index e32e289..cc56f0f 100644
--- a/arch_init.c
+++ b/arch_init.c
@@ -461,7 +461,18 @@ void qemu_service_io(void)
}
#ifdef HAS_AUDIO
-struct soundhw soundhw[] = {
+struct soundhw {
+ const char *name;
+ const char *descr;
+ int enabled;
+ int isa;
+ union {
+ int (*init_isa) (qemu_irq *pic);
+ int (*init_pci) (PCIBus *bus);
+ } init;
+};
+
+static struct soundhw soundhw[] = {
#ifdef HAS_AUDIO_CHOICE
#if defined(TARGET_I386) || defined(TARGET_MIPS)
{
@@ -610,10 +621,32 @@ void select_soundhw(const char *optarg)
}
}
}
+
+void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus)
+{
+ struct soundhw *c;
+
+ for (c = soundhw; c->name; ++c) {
+ if (c->enabled) {
+ if (c->isa) {
+ if (isa_pic) {
+ c->init.init_isa(isa_pic);
+ }
+ } else {
+ if (pci_bus) {
+ c->init.init_pci(pci_bus);
+ }
+ }
+ }
+ }
+}
#else
void select_soundhw(const char *optarg)
{
}
+void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus)
+{
+}
#endif
int qemu_uuid_parse(const char *str, uint8_t *uuid)
diff --git a/arch_init.h b/arch_init.h
index 682890c..17c9164 100644
--- a/arch_init.h
+++ b/arch_init.h
@@ -27,6 +27,7 @@ void do_acpitable_option(const char *optarg);
void do_smbios_option(const char *optarg);
void cpudef_init(void);
int audio_available(void);
+void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus);
int kvm_available(void);
int xen_available(void);
diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c
index a7caa3f..85eba5a 100644
--- a/hw/mips_jazz.c
+++ b/hw/mips_jazz.c
@@ -29,7 +29,7 @@
#include "isa.h"
#include "fdc.h"
#include "sysemu.h"
-#include "audio/audio.h"
+#include "arch_init.h"
#include "boards.h"
#include "net.h"
#include "esp.h"
@@ -90,26 +90,6 @@ static CPUWriteMemoryFunc * const dma_dummy_write[3] = {
dma_dummy_writeb,
};
-static void audio_init(qemu_irq *pic)
-{
- struct soundhw *c;
- int audio_enabled = 0;
-
- for (c = soundhw; !audio_enabled && c->name; ++c) {
- audio_enabled = c->enabled;
- }
-
- if (audio_enabled) {
- for (c = soundhw; c->name; ++c) {
- if (c->enabled) {
- if (c->isa) {
- c->init.init_isa(pic);
- }
- }
- }
- }
-}
-
#define MAGNUM_BIOS_SIZE_MAX 0x7e000
#define MAGNUM_BIOS_SIZE (BIOS_SIZE < MAGNUM_BIOS_SIZE_MAX ? BIOS_SIZE : MAGNUM_BIOS_SIZE_MAX)
@@ -284,7 +264,7 @@ void mips_jazz_init (ram_addr_t ram_size,
/* Sound card */
/* FIXME: missing Jazz sound at 0x8000c000, rc4030[2] */
- audio_init(i8259);
+ audio_init(i8259, NULL);
/* NVRAM: Unprotected at 0x9000, Protected at 0xa000, Read only at 0xb000 */
ds1225y_init(0x80009000, "nvram");
diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index d3ba969..9ae1e1f 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -37,7 +37,7 @@
#include "vmware_vga.h"
#include "qemu-char.h"
#include "sysemu.h"
-#include "audio/audio.h"
+#include "arch_init.h"
#include "boards.h"
#include "qemu-log.h"
#include "mips-bios.h"
@@ -457,25 +457,6 @@ static MaltaFPGAState *malta_fpga_init(target_phys_addr_t base, qemu_irq uart_ir
return s;
}
-/* Audio support */
-static void audio_init (PCIBus *pci_bus)
-{
- struct soundhw *c;
- int audio_enabled = 0;
-
- for (c = soundhw; !audio_enabled && c->name; ++c) {
- audio_enabled = c->enabled;
- }
-
- if (audio_enabled) {
- for (c = soundhw; c->name; ++c) {
- if (c->enabled) {
- c->init.init_pci(pci_bus);
- }
- }
- }
-}
-
/* Network support */
static void network_init(void)
{
@@ -967,7 +948,7 @@ void mips_malta_init (ram_addr_t ram_size,
fdctrl_init_isa(fd);
/* Sound card */
- audio_init(pci_bus);
+ audio_init(NULL, pci_bus);
/* Network card */
network_init();
diff --git a/hw/pc.c b/hw/pc.c
index fface7d..4dfdc0b 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -829,23 +829,6 @@ static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
-void pc_audio_init (PCIBus *pci_bus, qemu_irq *pic)
-{
- struct soundhw *c;
-
- for (c = soundhw; c->name; ++c) {
- if (c->enabled) {
- if (c->isa) {
- c->init.init_isa(pic);
- } else {
- if (pci_bus) {
- c->init.init_pci(pci_bus);
- }
- }
- }
- }
-}
-
void pc_init_ne2k_isa(NICInfo *nd)
{
static int nb_ne2k = 0;
diff --git a/hw/pc.h b/hw/pc.h
index 6852790..a048768 100644
--- a/hw/pc.h
+++ b/hw/pc.h
@@ -100,9 +100,6 @@ void pc_basic_device_init(qemu_irq *isa_irq,
FDCtrl **floppy_controller,
ISADevice **rtc_state);
void pc_init_ne2k_isa(NICInfo *nd);
-#ifdef HAS_AUDIO
-void pc_audio_init (PCIBus *pci_bus, qemu_irq *pic);
-#endif
void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
const char *boot_device,
BusState *ide0, BusState *ide1,
diff --git a/hw/pc_piix.c b/hw/pc_piix.c
index f82508d..7b74473 100644
--- a/hw/pc_piix.c
+++ b/hw/pc_piix.c
@@ -34,6 +34,7 @@
#include "kvm.h"
#include "sysemu.h"
#include "sysbus.h"
+#include "arch_init.h"
#include "blockdev.h"
#define MAX_IDE_BUS 2
@@ -148,7 +149,7 @@ static void pc_init1(ram_addr_t ram_size,
}
}
- pc_audio_init(pci_enabled ? pci_bus : NULL, isa_irq);
+ audio_init(isa_irq, pci_enabled ? pci_bus : NULL);
pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device,
idebus[0], idebus[1], floppy_controller, rtc_state);
diff --git a/sysemu.h b/sysemu.h
index d8fceec..a1d1164 100644
--- a/sysemu.h
+++ b/sysemu.h
@@ -177,21 +177,6 @@ extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
-#ifdef HAS_AUDIO
-struct soundhw {
- const char *name;
- const char *descr;
- int enabled;
- int isa;
- union {
- int (*init_isa) (qemu_irq *pic);
- int (*init_pci) (PCIBus *bus);
- } init;
-};
-
-extern struct soundhw soundhw[];
-#endif
-
void do_usb_add(Monitor *mon, const QDict *qdict);
void do_usb_del(Monitor *mon, const QDict *qdict);
void usb_info(Monitor *mon);
--
1.7.1.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: [PATCH] audio: consolidate audio_init()
2011-01-21 10:53 [Qemu-devel] [PATCH] audio: consolidate audio_init() Isaku Yamahata
@ 2011-01-21 20:44 ` Blue Swirl
2011-01-21 22:27 ` malc
2011-01-25 8:23 ` [Qemu-devel] " Aurelien Jarno
1 sibling, 1 reply; 6+ messages in thread
From: Blue Swirl @ 2011-01-21 20:44 UTC (permalink / raw)
To: Isaku Yamahata, malc; +Cc: qemu-devel
On Fri, Jan 21, 2011 at 10:53 AM, Isaku Yamahata <yamahata@valinux.co.jp> wrote:
> consolidate audio_init() and remove references to shoundhw.
>
> Cc: Blue Swirl <blauwirbel@gmail.com>
> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Acked-by: Blue Swirl <blauwirbel@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: [PATCH] audio: consolidate audio_init()
2011-01-21 20:44 ` [Qemu-devel] " Blue Swirl
@ 2011-01-21 22:27 ` malc
2011-01-23 15:50 ` Andreas Färber
0 siblings, 1 reply; 6+ messages in thread
From: malc @ 2011-01-21 22:27 UTC (permalink / raw)
To: Blue Swirl; +Cc: Isaku Yamahata, qemu-devel
On Fri, 21 Jan 2011, Blue Swirl wrote:
> On Fri, Jan 21, 2011 at 10:53 AM, Isaku Yamahata <yamahata@valinux.co.jp> wrote:
> > consolidate audio_init() and remove references to shoundhw.
> >
> > Cc: Blue Swirl <blauwirbel@gmail.com>
> > Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Don't see the point of first hunk. No objections otherwise.
>
> Acked-by: Blue Swirl <blauwirbel@gmail.com>
>
--
mailto:av1474@comtv.ru
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: [PATCH] audio: consolidate audio_init()
2011-01-21 22:27 ` malc
@ 2011-01-23 15:50 ` Andreas Färber
2011-01-24 2:16 ` Isaku Yamahata
0 siblings, 1 reply; 6+ messages in thread
From: Andreas Färber @ 2011-01-23 15:50 UTC (permalink / raw)
To: malc; +Cc: Blue Swirl, Isaku Yamahata, qemu-devel
Am 21.01.2011 um 23:27 schrieb malc:
> On Fri, 21 Jan 2011, Blue Swirl wrote:
>
>> On Fri, Jan 21, 2011 at 10:53 AM, Isaku Yamahata <yamahata@valinux.co.jp
>> > wrote:
>>> consolidate audio_init() and remove references to shoundhw.
>>>
>>> Cc: Blue Swirl <blauwirbel@gmail.com>
>>> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
>
> Don't see the point of first hunk. No objections otherwise.
I guess the point is to limit use of 'soundhw' to arch_init.c rather
than to anyone including sysemu.h?
The definition of the struct is moved there and the variable is made
static.
>>
>> Acked-by: Blue Swirl <blauwirbel@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: [PATCH] audio: consolidate audio_init()
2011-01-23 15:50 ` Andreas Färber
@ 2011-01-24 2:16 ` Isaku Yamahata
0 siblings, 0 replies; 6+ messages in thread
From: Isaku Yamahata @ 2011-01-24 2:16 UTC (permalink / raw)
To: Andreas Färber; +Cc: Blue Swirl, qemu-devel
On Sun, Jan 23, 2011 at 04:50:34PM +0100, Andreas Färber wrote:
> Am 21.01.2011 um 23:27 schrieb malc:
>
>> On Fri, 21 Jan 2011, Blue Swirl wrote:
>>
>>> On Fri, Jan 21, 2011 at 10:53 AM, Isaku Yamahata
>>> <yamahata@valinux.co.jp> wrote:
>>>> consolidate audio_init() and remove references to shoundhw.
>>>>
>>>> Cc: Blue Swirl <blauwirbel@gmail.com>
>>>> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
>>
>> Don't see the point of first hunk. No objections otherwise.
>
> I guess the point is to limit use of 'soundhw' to arch_init.c rather
> than to anyone including sysemu.h?
> The definition of the struct is moved there and the variable is made
> static.
That's right. Thank you for explanation. I didn't see any reason
why the definition of struct soundhw is used anywhere else.
>
>>>
>>> Acked-by: Blue Swirl <blauwirbel@gmail.com>
>
--
yamahata
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] audio: consolidate audio_init()
2011-01-21 10:53 [Qemu-devel] [PATCH] audio: consolidate audio_init() Isaku Yamahata
2011-01-21 20:44 ` [Qemu-devel] " Blue Swirl
@ 2011-01-25 8:23 ` Aurelien Jarno
1 sibling, 0 replies; 6+ messages in thread
From: Aurelien Jarno @ 2011-01-25 8:23 UTC (permalink / raw)
To: Isaku Yamahata; +Cc: Blue Swirl, qemu-devel
On Fri, Jan 21, 2011 at 07:53:45PM +0900, Isaku Yamahata wrote:
> consolidate audio_init() and remove references to shoundhw.
>
> Cc: Blue Swirl <blauwirbel@gmail.com>
> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
> ---
> arch_init.c | 35 ++++++++++++++++++++++++++++++++++-
> arch_init.h | 1 +
> hw/mips_jazz.c | 24 ++----------------------
> hw/mips_malta.c | 23 ++---------------------
> hw/pc.c | 17 -----------------
> hw/pc.h | 3 ---
> hw/pc_piix.c | 3 ++-
> sysemu.h | 15 ---------------
> 8 files changed, 41 insertions(+), 80 deletions(-)
Thanks, applied.
> diff --git a/arch_init.c b/arch_init.c
> index e32e289..cc56f0f 100644
> --- a/arch_init.c
> +++ b/arch_init.c
> @@ -461,7 +461,18 @@ void qemu_service_io(void)
> }
>
> #ifdef HAS_AUDIO
> -struct soundhw soundhw[] = {
> +struct soundhw {
> + const char *name;
> + const char *descr;
> + int enabled;
> + int isa;
> + union {
> + int (*init_isa) (qemu_irq *pic);
> + int (*init_pci) (PCIBus *bus);
> + } init;
> +};
> +
> +static struct soundhw soundhw[] = {
> #ifdef HAS_AUDIO_CHOICE
> #if defined(TARGET_I386) || defined(TARGET_MIPS)
> {
> @@ -610,10 +621,32 @@ void select_soundhw(const char *optarg)
> }
> }
> }
> +
> +void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus)
> +{
> + struct soundhw *c;
> +
> + for (c = soundhw; c->name; ++c) {
> + if (c->enabled) {
> + if (c->isa) {
> + if (isa_pic) {
> + c->init.init_isa(isa_pic);
> + }
> + } else {
> + if (pci_bus) {
> + c->init.init_pci(pci_bus);
> + }
> + }
> + }
> + }
> +}
> #else
> void select_soundhw(const char *optarg)
> {
> }
> +void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus)
> +{
> +}
> #endif
>
> int qemu_uuid_parse(const char *str, uint8_t *uuid)
> diff --git a/arch_init.h b/arch_init.h
> index 682890c..17c9164 100644
> --- a/arch_init.h
> +++ b/arch_init.h
> @@ -27,6 +27,7 @@ void do_acpitable_option(const char *optarg);
> void do_smbios_option(const char *optarg);
> void cpudef_init(void);
> int audio_available(void);
> +void audio_init(qemu_irq *isa_pic, PCIBus *pci_bus);
> int kvm_available(void);
> int xen_available(void);
>
> diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c
> index a7caa3f..85eba5a 100644
> --- a/hw/mips_jazz.c
> +++ b/hw/mips_jazz.c
> @@ -29,7 +29,7 @@
> #include "isa.h"
> #include "fdc.h"
> #include "sysemu.h"
> -#include "audio/audio.h"
> +#include "arch_init.h"
> #include "boards.h"
> #include "net.h"
> #include "esp.h"
> @@ -90,26 +90,6 @@ static CPUWriteMemoryFunc * const dma_dummy_write[3] = {
> dma_dummy_writeb,
> };
>
> -static void audio_init(qemu_irq *pic)
> -{
> - struct soundhw *c;
> - int audio_enabled = 0;
> -
> - for (c = soundhw; !audio_enabled && c->name; ++c) {
> - audio_enabled = c->enabled;
> - }
> -
> - if (audio_enabled) {
> - for (c = soundhw; c->name; ++c) {
> - if (c->enabled) {
> - if (c->isa) {
> - c->init.init_isa(pic);
> - }
> - }
> - }
> - }
> -}
> -
> #define MAGNUM_BIOS_SIZE_MAX 0x7e000
> #define MAGNUM_BIOS_SIZE (BIOS_SIZE < MAGNUM_BIOS_SIZE_MAX ? BIOS_SIZE : MAGNUM_BIOS_SIZE_MAX)
>
> @@ -284,7 +264,7 @@ void mips_jazz_init (ram_addr_t ram_size,
>
> /* Sound card */
> /* FIXME: missing Jazz sound at 0x8000c000, rc4030[2] */
> - audio_init(i8259);
> + audio_init(i8259, NULL);
>
> /* NVRAM: Unprotected at 0x9000, Protected at 0xa000, Read only at 0xb000 */
> ds1225y_init(0x80009000, "nvram");
> diff --git a/hw/mips_malta.c b/hw/mips_malta.c
> index d3ba969..9ae1e1f 100644
> --- a/hw/mips_malta.c
> +++ b/hw/mips_malta.c
> @@ -37,7 +37,7 @@
> #include "vmware_vga.h"
> #include "qemu-char.h"
> #include "sysemu.h"
> -#include "audio/audio.h"
> +#include "arch_init.h"
> #include "boards.h"
> #include "qemu-log.h"
> #include "mips-bios.h"
> @@ -457,25 +457,6 @@ static MaltaFPGAState *malta_fpga_init(target_phys_addr_t base, qemu_irq uart_ir
> return s;
> }
>
> -/* Audio support */
> -static void audio_init (PCIBus *pci_bus)
> -{
> - struct soundhw *c;
> - int audio_enabled = 0;
> -
> - for (c = soundhw; !audio_enabled && c->name; ++c) {
> - audio_enabled = c->enabled;
> - }
> -
> - if (audio_enabled) {
> - for (c = soundhw; c->name; ++c) {
> - if (c->enabled) {
> - c->init.init_pci(pci_bus);
> - }
> - }
> - }
> -}
> -
> /* Network support */
> static void network_init(void)
> {
> @@ -967,7 +948,7 @@ void mips_malta_init (ram_addr_t ram_size,
> fdctrl_init_isa(fd);
>
> /* Sound card */
> - audio_init(pci_bus);
> + audio_init(NULL, pci_bus);
>
> /* Network card */
> network_init();
> diff --git a/hw/pc.c b/hw/pc.c
> index fface7d..4dfdc0b 100644
> --- a/hw/pc.c
> +++ b/hw/pc.c
> @@ -829,23 +829,6 @@ static const int ne2000_irq[NE2000_NB_MAX] = { 9, 10, 11, 3, 4, 5 };
> static const int parallel_io[MAX_PARALLEL_PORTS] = { 0x378, 0x278, 0x3bc };
> static const int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
>
> -void pc_audio_init (PCIBus *pci_bus, qemu_irq *pic)
> -{
> - struct soundhw *c;
> -
> - for (c = soundhw; c->name; ++c) {
> - if (c->enabled) {
> - if (c->isa) {
> - c->init.init_isa(pic);
> - } else {
> - if (pci_bus) {
> - c->init.init_pci(pci_bus);
> - }
> - }
> - }
> - }
> -}
> -
> void pc_init_ne2k_isa(NICInfo *nd)
> {
> static int nb_ne2k = 0;
> diff --git a/hw/pc.h b/hw/pc.h
> index 6852790..a048768 100644
> --- a/hw/pc.h
> +++ b/hw/pc.h
> @@ -100,9 +100,6 @@ void pc_basic_device_init(qemu_irq *isa_irq,
> FDCtrl **floppy_controller,
> ISADevice **rtc_state);
> void pc_init_ne2k_isa(NICInfo *nd);
> -#ifdef HAS_AUDIO
> -void pc_audio_init (PCIBus *pci_bus, qemu_irq *pic);
> -#endif
> void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size,
> const char *boot_device,
> BusState *ide0, BusState *ide1,
> diff --git a/hw/pc_piix.c b/hw/pc_piix.c
> index f82508d..7b74473 100644
> --- a/hw/pc_piix.c
> +++ b/hw/pc_piix.c
> @@ -34,6 +34,7 @@
> #include "kvm.h"
> #include "sysemu.h"
> #include "sysbus.h"
> +#include "arch_init.h"
> #include "blockdev.h"
>
> #define MAX_IDE_BUS 2
> @@ -148,7 +149,7 @@ static void pc_init1(ram_addr_t ram_size,
> }
> }
>
> - pc_audio_init(pci_enabled ? pci_bus : NULL, isa_irq);
> + audio_init(isa_irq, pci_enabled ? pci_bus : NULL);
>
> pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device,
> idebus[0], idebus[1], floppy_controller, rtc_state);
> diff --git a/sysemu.h b/sysemu.h
> index d8fceec..a1d1164 100644
> --- a/sysemu.h
> +++ b/sysemu.h
> @@ -177,21 +177,6 @@ extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
>
> #define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)
>
> -#ifdef HAS_AUDIO
> -struct soundhw {
> - const char *name;
> - const char *descr;
> - int enabled;
> - int isa;
> - union {
> - int (*init_isa) (qemu_irq *pic);
> - int (*init_pci) (PCIBus *bus);
> - } init;
> -};
> -
> -extern struct soundhw soundhw[];
> -#endif
> -
> void do_usb_add(Monitor *mon, const QDict *qdict);
> void do_usb_del(Monitor *mon, const QDict *qdict);
> void usb_info(Monitor *mon);
> --
> 1.7.1.1
>
>
>
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-01-25 8:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-21 10:53 [Qemu-devel] [PATCH] audio: consolidate audio_init() Isaku Yamahata
2011-01-21 20:44 ` [Qemu-devel] " Blue Swirl
2011-01-21 22:27 ` malc
2011-01-23 15:50 ` Andreas Färber
2011-01-24 2:16 ` Isaku Yamahata
2011-01-25 8:23 ` [Qemu-devel] " Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).