From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47306) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGRGa-0005Yw-57 for qemu-devel@nongnu.org; Sat, 18 Jul 2015 08:30:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZGRGV-0005ZU-97 for qemu-devel@nongnu.org; Sat, 18 Jul 2015 08:30:56 -0400 Received: from mail-wi0-x235.google.com ([2a00:1450:400c:c05::235]:33945) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGRGU-0005Yt-WD for qemu-devel@nongnu.org; Sat, 18 Jul 2015 08:30:51 -0400 Received: by wibud3 with SMTP id ud3so56487248wib.1 for ; Sat, 18 Jul 2015 05:30:50 -0700 (PDT) Sender: Paolo Bonzini References: <650d4e6b1636f20a7e1240cd0776fff5c2f79743.1437212383.git.crosthwaite.peter@gmail.com> From: Paolo Bonzini Message-ID: <55AA46F5.2050905@redhat.com> Date: Sat, 18 Jul 2015 14:30:45 +0200 MIME-Version: 1.0 In-Reply-To: <650d4e6b1636f20a7e1240cd0776fff5c2f79743.1437212383.git.crosthwaite.peter@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 24/35] target-arm: Split cp helper API to new C file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Crosthwaite , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, rth@twiddle.net, edgar.iglesias@gmail.com, afaerber@suse.de, Peter Crosthwaite On 18/07/2015 11:40, Peter Crosthwaite wrote: > diff --git a/target-arm/cp.c b/target-arm/cp.c > new file mode 100644 > index 0000000..39a15ee > --- /dev/null > +++ b/target-arm/cp.c > @@ -0,0 +1,328 @@ > +#include "qemu-common.h" > +#include "../cpu.h" > + Shouldn't this still be "cpu.h" at this point? Paolo