From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760701Ab2ERKpM (ORCPT ); Fri, 18 May 2012 06:45:12 -0400 Received: from terminus.zytor.com ([198.137.202.10]:42735 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750705Ab2ERKpI (ORCPT ); Fri, 18 May 2012 06:45:08 -0400 Date: Fri, 18 May 2012 03:43:52 -0700 From: tip-bot for Ingo Molnar Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, konrad.wilk@oracle.com, jarkko.sakkinen@intel.com, jeremy@goop.org, lenb@kernel.org, tglx@linutronix.de Reply-To: mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, konrad.wilk@oracle.com, jarkko.sakkinen@intel.com, jeremy@goop.org, lenb@kernel.org, tglx@linutronix.de To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] x86/xen/apic: Add missing #include Git-Commit-ID: 87e4baacaeba098e217b14e9d2f6af428fe3f657 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (terminus.zytor.com [127.0.0.1]); Fri, 18 May 2012 03:43:59 -0700 (PDT) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 87e4baacaeba098e217b14e9d2f6af428fe3f657 Gitweb: http://git.kernel.org/tip/87e4baacaeba098e217b14e9d2f6af428fe3f657 Author: Ingo Molnar AuthorDate: Fri, 18 May 2012 09:34:45 +0200 Committer: Ingo Molnar CommitDate: Fri, 18 May 2012 09:34:45 +0200 x86/xen/apic: Add missing #include This file depends on , but the dependency was hidden due to: -> -> -> With the removal of , this exposed the missing Cc: Len Brown Cc: Konrad Rzeszutek Wilk Cc: Jeremy Fitzhardinge Cc: Jarkko Sakkinen Cc: H. Peter Anvin Link: http://lkml.kernel.org/n/tip-7ccybvue6mw6wje3uxzzcglj@git.kernel.org Signed-off-by: Ingo Molnar --- arch/x86/xen/apic.c | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/arch/x86/xen/apic.c b/arch/x86/xen/apic.c index 1913bf2..ec57bd3 100644 --- a/arch/x86/xen/apic.c +++ b/arch/x86/xen/apic.c @@ -1,9 +1,12 @@ #include + #include #include -#include #include +#include +#include + unsigned int xen_io_apic_read(unsigned apic, unsigned reg) { struct physdev_apic apic_op;