From: Takayoshi Kochi <kochi@hpc.bs1.fc.nec.co.jp>
To: linux-ia64@vger.kernel.org
Subject: ia64 acpi.c fix for 2.6.0-test2
Date: Tue, 05 Aug 2003 02:01:02 +0000 [thread overview]
Message-ID: <marc-linux-ia64-106004903231076@msgid-missing> (raw)
[-- Attachment #1: Type: Text/Plain, Size: 440 bytes --]
Hi David,
This is a patch to fix the same problem I sent the other day
for 2.4 tree.
Fortunately, we don't have problem without this patch for 2.6
because ACPI and IOSAPIC interface have the same numbers
(ACPI_ACTIVE_LOW = IOSAPIC_LOW, ACPI_EDGE_SENSITIVE = IOSAPIC_EDGE, etc.)
But it should be converted explicitly.
---
1st Computer Software Division, NEC Corporation
Takayoshi Kochi <kochi@hpc.bs1.fc.nec.co.jp/t-kochi@bq.jp.nec.com>
[-- Attachment #2: acpi.c-2.6.diff --]
[-- Type: Text/Plain, Size: 678 bytes --]
Index: dcm-260t2/arch/ia64/kernel/acpi.c
===================================================================
RCS file: /data/cvsroot/lia64-2.5/arch/ia64/kernel/acpi.c,v
retrieving revision 1.1.1.19
diff -u -r1.1.1.19 acpi.c
--- dcm-260t2/arch/ia64/kernel/acpi.c 29 Jul 2003 10:33:17 -0000 1.1.1.19
+++ dcm-260t2/arch/ia64/kernel/acpi.c 1 Aug 2003 06:29:37 -0000
@@ -727,7 +727,9 @@
return 0;
/* Turn it on */
- vector = iosapic_register_intr (gsi, polarity, trigger);
+ vector = iosapic_register_intr (gsi,
+ (polarity == ACPI_ACTIVE_LOW) ? IOSAPIC_POL_LOW : IOSAPIC_POL_HIGH,
+ (trigger == ACPI_EDGE_SENSITIVE) ? IOSAPIC_EDGE : IOSAPIC_LEVEL);
return vector;
}
reply other threads:[~2003-08-05 2:01 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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-106004903231076@msgid-missing \
--to=kochi@hpc.bs1.fc.nec.co.jp \
--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.