From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=45642 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P1zrj-0008W7-IR for qemu-devel@nongnu.org; Sat, 02 Oct 2010 07:02:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P1zri-0007iJ-Di for qemu-devel@nongnu.org; Sat, 02 Oct 2010 07:02:55 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:50629) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P1zri-0007hx-0B for qemu-devel@nongnu.org; Sat, 02 Oct 2010 07:02:54 -0400 Message-ID: <4CA7115A.8060201@mail.berlios.de> Date: Sat, 02 Oct 2010 13:02:50 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH 0/2] powerpc: Add a virtex5 ml507 refdesign board (v2) References: <1285767655-13485-1-git-send-email-edgar.iglesias@gmail.com> <4CA48D8A.70000@suse.de> <20100930171226.GB10823@laped.lan> In-Reply-To: <20100930171226.GB10823@laped.lan> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Edgar E. Iglesias" Cc: Alexander Graf , qemu-devel@nongnu.org Am 30.09.2010 19:12, schrieb Edgar E. Iglesias: > On Thu, Sep 30, 2010 at 03:15:54PM +0200, Alexander Graf wrote: >> Edgar E. Iglesias wrote: >>> v2: >>> * Address review comments from A. Graf. >>> >>> Edgar E. Iglesias (2): >>> powerpc: Add a ppc-440x5 Xilinx model >>> powerpc: Add a virtex5 ml507 refdesign board >>> >>> Makefile.target | 8 + >>> default-configs/ppc-softmmu.mak | 2 + >>> default-configs/ppc64-softmmu.mak | 2 + >>> default-configs/ppcemb-softmmu.mak | 2 + >>> hw/virtex_ml507.c | 278 ++++++++++++++++++++++++++++++++++++ >>> target-ppc/cpu.h | 4 + >>> target-ppc/translate_init.c | 6 +- >>> 7 files changed, 300 insertions(+), 2 deletions(-) >>> create mode 100644 hw/virtex_ml507.c >>> >>> >>> >> No complaints from me. Feel free to apply them. >> >> Signed-off-by: Alexander Graf > > Applied, thanks. > > Cheers > > What about coding conventions? New source files should comply with CODING_STYLE (block structure). virtex_ml507.c: + if (!fdt) + return 0; Cheers,