From: "H. J. Lu" <hjl@lucon.org>
To: linux-ia64@vger.kernel.org
Subject: 2.4 PATCH: Fix acpi for bigsur
Date: Wed, 06 Aug 2003 15:45:04 +0000 [thread overview]
Message-ID: <marc-linux-ia64-106018473231291@msgid-missing> (raw)
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;
next reply other threads:[~2003-08-06 15:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-06 15:45 H. J. Lu [this message]
2003-08-06 21:54 ` 2.4 PATCH: Fix acpi for bigsur Bjorn Helgaas
[not found] <20030806154504.GC28899@lucon.org>
[not found] ` <20030806154504.GC28899-8HFB7qzu3A/YtjvyW6yDsg@public.gmane.org>
2003-08-06 21:54 ` Bjorn Helgaas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=marc-linux-ia64-106018473231291@msgid-missing \
--to=hjl@lucon.org \
--cc=linux-ia64@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.