public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix warning in arch/ia64/pci/pci.c
@ 2005-01-10 21:25 Jesse Barnes
  2005-01-10 21:52 ` Matthew Wilcox
  2005-01-10 21:54 ` Jesse Barnes
  0 siblings, 2 replies; 3+ messages in thread
From: Jesse Barnes @ 2005-01-10 21:25 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 272 bytes --]

Bjorn, I think you had a similar fix awhile back?

Fix a 'mixing code and declarations' warning in pci.c by creating a small 
function that's a no-op if CONFIG_NUMA=n but otherwise includes the proper 
extern.

Signed-off-by: Jesse Barnes <jbarnes@sgi.com>

Thanks,
Jesse

[-- Attachment #2: pci-fix-warning.patch --]
[-- Type: text/plain, Size: 827 bytes --]

===== arch/ia64/pci/pci.c 1.60 vs edited =====
--- 1.60/arch/ia64/pci/pci.c	2005-01-04 18:48:18 -08:00
+++ edited/arch/ia64/pci/pci.c	2005-01-06 17:49:11 -08:00
@@ -131,6 +131,19 @@
 	.write = pci_write,
 };
 
+#ifdef CONFIG_NUMA
+extern acpi_status acpi_map_iosapic(acpi_handle, u32, void *, void **);
+static void acpi_map_iosapics(void)
+{
+	acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
+}
+#else
+static void acpi_map_iosapics(void)
+{
+	return;
+}
+#endif /* CONFIG_NUMA */
+
 static int __init
 pci_acpi_init (void)
 {
@@ -138,11 +151,7 @@
 
 	printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
 
-#ifdef CONFIG_NUMA
-extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
-
-	acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
-#endif
+	acpi_map_iosapics();
 
 	if (pci_routeirq) {
 		/*

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] fix warning in arch/ia64/pci/pci.c
  2005-01-10 21:25 [PATCH] fix warning in arch/ia64/pci/pci.c Jesse Barnes
@ 2005-01-10 21:52 ` Matthew Wilcox
  2005-01-10 21:54 ` Jesse Barnes
  1 sibling, 0 replies; 3+ messages in thread
From: Matthew Wilcox @ 2005-01-10 21:52 UTC (permalink / raw)
  To: linux-ia64

On Mon, Jan 10, 2005 at 01:25:49PM -0800, Jesse Barnes wrote:
> Bjorn, I think you had a similar fix awhile back?

Was me actually ... mine looked like this:

+#ifdef CONFIG_NUMA
+extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
+#define map_apics() acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
+#else
+#define map_apics() do { } while (0);
+#endif
+
[...]
-#ifdef CONFIG_NUMA
-extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
-
-       acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
-#endif
+       map_apics();

but yours has probbaly even been compiled, and stuff.

> Fix a 'mixing code and declarations' warning in pci.c by creating a small 
> function that's a no-op if CONFIG_NUMA=n but otherwise includes the proper 
> extern.
> 
> Signed-off-by: Jesse Barnes <jbarnes@sgi.com>
> 
> Thanks,
> Jesse

> === arch/ia64/pci/pci.c 1.60 vs edited ==> --- 1.60/arch/ia64/pci/pci.c	2005-01-04 18:48:18 -08:00
> +++ edited/arch/ia64/pci/pci.c	2005-01-06 17:49:11 -08:00
> @@ -131,6 +131,19 @@
>  	.write = pci_write,
>  };
>  
> +#ifdef CONFIG_NUMA
> +extern acpi_status acpi_map_iosapic(acpi_handle, u32, void *, void **);
> +static void acpi_map_iosapics(void)
> +{
> +	acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
> +}
> +#else
> +static void acpi_map_iosapics(void)
> +{
> +	return;
> +}
> +#endif /* CONFIG_NUMA */
> +
>  static int __init
>  pci_acpi_init (void)
>  {
> @@ -138,11 +151,7 @@
>  
>  	printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
>  
> -#ifdef CONFIG_NUMA
> -extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
> -
> -	acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
> -#endif
> +	acpi_map_iosapics();
>  
>  	if (pci_routeirq) {
>  		/*


-- 
"Next the statesmen will invent cheap lies, putting the blame upon 
the nation that is attacked, and every man will be glad of those
conscience-soothing falsities, and will diligently study them, and refuse
to examine any refutations of them; and thus he will by and by convince 
himself that the war is just, and will thank God for the better sleep 
he enjoys after this process of grotesque self-deception." -- Mark Twain

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] fix warning in arch/ia64/pci/pci.c
  2005-01-10 21:25 [PATCH] fix warning in arch/ia64/pci/pci.c Jesse Barnes
  2005-01-10 21:52 ` Matthew Wilcox
@ 2005-01-10 21:54 ` Jesse Barnes
  1 sibling, 0 replies; 3+ messages in thread
From: Jesse Barnes @ 2005-01-10 21:54 UTC (permalink / raw)
  To: linux-ia64

On Monday, January 10, 2005 1:52 pm, Matthew Wilcox wrote:
> On Mon, Jan 10, 2005 at 01:25:49PM -0800, Jesse Barnes wrote:
> > Bjorn, I think you had a similar fix awhile back?
>
> Was me actually ... mine looked like this:
>
> +#ifdef CONFIG_NUMA
> +extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
> +#define map_apics() acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
> +#else
> +#define map_apics() do { } while (0);
> +#endif
> +
> [...]
> -#ifdef CONFIG_NUMA
> -extern acpi_status acpi_map_iosapic (acpi_handle, u32, void*, void**);
> -
> -       acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
> -#endif
> +       map_apics();
>
> but yours has probbaly even been compiled, and stuff.

Yeah, but I'm happy with either one, they look equivalent (except yours has 
';' at the end of the #defines).

Thanks,
Jesse

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-01-10 21:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-10 21:25 [PATCH] fix warning in arch/ia64/pci/pci.c Jesse Barnes
2005-01-10 21:52 ` Matthew Wilcox
2005-01-10 21:54 ` Jesse Barnes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox