From mboxrd@z Thu Jan 1 00:00:00 1970 From: hanjun.guo@linaro.org (Hanjun Guo) Date: Tue, 19 May 2015 11:37:44 +0800 Subject: [PATCHv2 01/12] arm/arm64: kvm: add missing PSCI include In-Reply-To: <1431945503-6939-2-git-send-email-mark.rutland@arm.com> References: <1431945503-6939-1-git-send-email-mark.rutland@arm.com> <1431945503-6939-2-git-send-email-mark.rutland@arm.com> Message-ID: <555AB008.6030809@linaro.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 2015?05?18? 18:38, Mark Rutland wrote: > We make use of the PSCI function IDs, but don't explicitly include the > header which defines them. Relying on transitive header includes is > fragile and will be broken as headers are refactored. > > This patch includes the relevant header file directly so as to avoid > future breakage. > > Signed-off-by: Mark Rutland > Acked-by: Christoffer Dall > Cc: Marc Zyngier > --- > arch/arm/kvm/psci.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/arm/kvm/psci.c b/arch/arm/kvm/psci.c > index 02fa8ef..7e9398c 100644 > --- a/arch/arm/kvm/psci.c > +++ b/arch/arm/kvm/psci.c > @@ -24,6 +24,8 @@ > #include > #include > > +#include > + > /* > * This is an implementation of the Power State Coordination Interface > * as described in ARM document number ARM DEN 0022A. Reviewed-by: Hanjun Guo