From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH] xen: Pass the location of the ACPI RSDP to DOM0. Date: Tue, 17 Dec 2013 19:27:47 +0000 Message-ID: <52B0A5B3.6090903@citrix.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Philip Wernersbach Cc: Ian.Campbell@citrix.com, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On 17/12/13 19:09, Philip Wernersbach wrote: > I can't post patches inline because my mail client corrupts the > patches with extra white space. The linked patch should meet all > requirements listed in Submitting_Xen_Patches. > > Thanks, > Philip Wernersbach In which case I shall do a cursory review right now. You have used tabs not spaces. This needs fixing, and will likely fix the alignment issues "static acpi_physical_address __initdata global_rsdp_address;" should not be static. As the patch currently stands you have two static variables with same name. "static char __initdata global_rsdp_address_string" again shouldn't be static acpi_os_get_root_pointer() already a global function which does what you want. No need to edit drivers/acpi/tables at all. ~Andrew