From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bjorn Helgaas Subject: Re: [ACPI] [RFC/PATCH 1/3] ACPI based I/O APIC hot-plug Date: Thu, 21 Apr 2005 11:21:31 -0600 Message-ID: <1114104091.2784.40.camel@eeyore> References: <4267AD13.5080900@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <4267AD13.5080900@jp.fujitsu.com> Sender: linux-ia64-owner@vger.kernel.org To: Kenji Kaneshige Cc: Andrew Morton , Len Brown , "Luck, Tony" , Greg KH , acpi-devel@lists.sourceforge.net, linux-ia64@vger.kernel.org, pcihpd-discuss@lists.sourceforge.net List-Id: linux-acpi@vger.kernel.org > +++ linux-2.6.12-rc2-mm3-kanesige/arch/ia64/kernel/acpi.c 2005-04-20 10:51:30.136299152 +0900 > @@ -892,4 +892,21 @@ acpi_map_iosapic (acpi_handle handle, u3 > return AE_OK; > } > #endif /* CONFIG_NUMA */ > + > +int > +acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base) > +{ > + /* TBD */ > + return -EINVAL; > +} > +EXPORT_SYMBOL(acpi_register_ioapic); > + > +int > +acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base) Nitpick: these declarations should follow the style of the rest of the file, i.e., add a space between the function name and the opening parenthesis.