From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUgSp-0005NM-Jk for qemu-devel@nongnu.org; Fri, 20 Jan 2017 16:11:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUgSk-0000P6-KW for qemu-devel@nongnu.org; Fri, 20 Jan 2017 16:11:15 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40096) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cUgSk-0000Of-E2 for qemu-devel@nongnu.org; Fri, 20 Jan 2017 16:11:10 -0500 Received: from smtp.corp.redhat.com (int-mx16.intmail.prod.int.phx2.redhat.com [10.5.11.28]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 803BE7FE91 for ; Fri, 20 Jan 2017 21:11:10 +0000 (UTC) Date: Fri, 20 Jan 2017 19:11:07 -0200 From: Eduardo Habkost Message-ID: <20170120211107.GD21555@thinpad.lan.raisama.net> References: <20170117184638.25809-1-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170117184638.25809-1-ehabkost@redhat.com> Subject: Re: [Qemu-devel] [PATCH 0/3] arch_init: Move soundhw code to hw/audio/soundhw.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Ping? Any feedback? On Tue, Jan 17, 2017 at 04:46:35PM -0200, Eduardo Habkost wrote: > This moves the arch_init.c soundhw code to its own file, renames > audio_init() to soundhw_init(), and renames hw/audio/audio.h to > hw/audio/soundhw.h. > > Eduardo Habkost (3): > audio: Move arch_init audio code to hw/audio/soundhw.c > audio: Rename audio_init() to soundhw_init() > audio: Rename hw/audio/audio.h to hw/audio/soundhw.h > > include/hw/audio/{audio.h => soundhw.h} | 3 + > include/sysemu/arch_init.h | 2 - > arch_init.c | 126 +------------------------- > hw/audio/ac97.c | 2 +- > hw/audio/adlib.c | 2 +- > hw/audio/cs4231a.c | 2 +- > hw/audio/es1370.c | 2 +- > hw/audio/gus.c | 2 +- > hw/audio/intel-hda.c | 2 +- > hw/audio/pcspk.c | 2 +- > hw/audio/sb16.c | 2 +- > hw/audio/soundhw.c | 156 ++++++++++++++++++++++++++++++++ > vl.c | 3 +- > hw/audio/Makefile.objs | 2 + > 14 files changed, 172 insertions(+), 136 deletions(-) > rename include/hw/audio/{audio.h => soundhw.h} (81%) > create mode 100644 hw/audio/soundhw.c > > -- > 2.11.0.259.g40922b1 > > -- Eduardo