From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH v11] xen/arm : emulation of arm's PSCI v0.2 standard Date: Thu, 21 Aug 2014 23:48:13 +0100 Message-ID: <1408661293.15186.11.camel@citrix.com> References: <1408000981-23945-1-git-send-email-parth.dixit@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1408000981-23945-1-git-send-email-parth.dixit@linaro.org> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Parth Dixit Cc: stefano.stabellini@eu.citrix.com, tim@xen.org, christoffer.dall@linaro.org, julien.grall@linaro.org, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Thu, 2014-08-14 at 12:53 +0530, Parth Dixit wrote: > Arm based virtual machines dom0/guest will request power related functionality > from xen through PSCI interface. This patch implements version 0.2 of > PSCI standard specified by arm for 64bit and 32 bit arm machines. > > Signed-off-by: Parth Dixit Acked + applied with one minor change: > diff --git a/xen/arch/arm/vpsci.c b/xen/arch/arm/vpsci.c > index 1ceb8cb..c3d2df9 100644 > --- a/xen/arch/arm/vpsci.c > +++ b/xen/arch/arm/vpsci.c > @@ -17,24 +17,37 @@ > #include > #include > #include > +#include > +#include The second one should be . With that changed I also moved it next to the other asm/*.h includes. Thanks, Ian.