From: Prarit Bhargava <prarit@sgi.com>
To: linux-ia64@vger.kernel.org
Subject: Re: [PATCH]: Error in ACPI error handling results in WARN_ON
Date: Fri, 14 Jan 2005 14:18:07 +0000 [thread overview]
Message-ID: <41E7D49F.1020201@sgi.com> (raw)
In-Reply-To: <41E7CE5D.3010805@sgi.com>
[-- Attachment #1: Type: text/plain, Size: 120 bytes --]
Thanks for your input Matthew -- it's always appreciated.
Here's a new patch taking into account Matthew's comments.
[-- Attachment #2: acpi-ide.patch --]
[-- Type: text/plain, Size: 456 bytes --]
===== drivers/acpi/pci_irq.c 1.35 vs edited =====
--- 1.35/drivers/acpi/pci_irq.c 2005-01-04 21:48:17 -05:00
+++ edited/drivers/acpi/pci_irq.c 2005-01-14 08:14:34 -05:00
@@ -487,10 +487,10 @@
* If no PRT entry was found, we'll try to derive an IRQ from the
* device's parent bridge.
*/
- if (!gsi)
+ if (gsi == -1)
gsi = acpi_pci_irq_derive(dev, pin,
&edge_level, &active_high_low);
- if (!gsi)
+ if (gsi == -1)
return_VOID;
/*
prev parent reply other threads:[~2005-01-14 14:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-14 13:51 [PATCH]: Error in ACPI error handling results in WARN_ON Prarit Bhargava
2005-01-14 14:09 ` Matthew Wilcox
2005-01-14 14:18 ` Prarit Bhargava [this message]
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=41E7D49F.1020201@sgi.com \
--to=prarit@sgi.com \
--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.