public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* 2.4 PATCH: Fix acpi for bigsur
@ 2003-08-06 15:45 H. J. Lu
  2003-08-06 21:54 ` Bjorn Helgaas
  0 siblings, 1 reply; 2+ messages in thread
From: H. J. Lu @ 2003-08-06 15:45 UTC (permalink / raw)
  To: linux-ia64

I need this patch to get the current 2.4 kernel to boot on bigsur.


H.J.
----
--- linux/drivers/acpi/osl.c.acpi	Mon Jul 21 15:27:59 2003
+++ linux/drivers/acpi/osl.c	Wed Aug  6 07:34:41 2003
@@ -251,7 +251,12 @@ acpi_os_install_interrupt_handler(u32 ir
 	irq = acpi_fadt.sci_int;
 
 #ifdef CONFIG_IA64
-	irq = gsi_to_vector(irq);
+	irq = acpi_irq_to_vector (irq);
+	if (irq < 0) {
+		printk(KERN_ERR PREFIX "SCI (IRQ%d/%d) not registerd\n",
+		       irq, acpi_fadt.sci_int);
+		return AE_OK;
+	}
 #endif
 	acpi_irq_irq = irq;
 	acpi_irq_handler = handler;

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

end of thread, other threads:[~2003-08-06 21:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-06 15:45 2.4 PATCH: Fix acpi for bigsur H. J. Lu
2003-08-06 21:54 ` Bjorn Helgaas

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