public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix wrong assumption about irq and vector in msi_ia64.c
@ 2007-04-06  7:51 Ishimatsu Yasuaki
  2007-04-07  2:22 ` Satoru Takeuchi
  0 siblings, 1 reply; 2+ messages in thread
From: Ishimatsu Yasuaki @ 2007-04-06  7:51 UTC (permalink / raw)
  To: linux-ia64

This patch fixes a wrong assumption in ia64 MSI code that IRQ equals
vector.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>

---
 arch/ia64/kernel/msi_ia64.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6.21-rc5/arch/ia64/kernel/msi_ia64.c
=================================--- linux-2.6.21-rc5.orig/arch/ia64/kernel/msi_ia64.c   2007-04-05 21:30:52.000000000 +0900
+++ linux-2.6.21-rc5/arch/ia64/kernel/msi_ia64.c        2007-04-05 21:31:34.000000000 +0900
@@ -76,7 +76,7 @@

        set_irq_msi(irq, desc);
        dest_phys_id = cpu_physical_id(first_cpu(cpu_online_map));
-       vector = irq;
+       vector = irq_to_vector(irq);

        msg.address_hi = 0;
        msg.address_lo @@ -110,7 +110,7 @@

 static int ia64_msi_retrigger_irq(unsigned int irq)
 {
-       unsigned int vector = irq;
+       unsigned int vector = irq_to_vector(irq);
        ia64_resend_irq(vector);

        return 1;

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

end of thread, other threads:[~2007-04-07  2:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-06  7:51 [PATCH] Fix wrong assumption about irq and vector in msi_ia64.c Ishimatsu Yasuaki
2007-04-07  2:22 ` Satoru Takeuchi

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