netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* DM9000_IRQ_FLAGS
@ 2007-12-11 19:18 Daniel Mack
  2007-12-11 20:31 ` DM9000_IRQ_FLAGS Remy Bohmer
  2007-12-20  9:45 ` DM9000_IRQ_FLAGS Ben Dooks
  0 siblings, 2 replies; 9+ messages in thread
From: Daniel Mack @ 2007-12-11 19:18 UTC (permalink / raw)
  To: netdev

Hi,

on Toradex' Colibri, a PXA270 based board with a DM9000 ethernet
controller, this driver won't work due to unsuitable DM9000_IRQ_FLAGS.
If I understood the code behind request_irq() correctly, it's not
recommended to register an IRQ without any of the IRQT_* flags set.

Is there any concerns about applying the patch below?

Best regards,
Daniel

diff --git a/drivers/net/dm9000.c b/drivers/net/dm9000.c
index 3286d2a..6a20a54 100644
--- a/drivers/net/dm9000.c
+++ b/drivers/net/dm9000.c
@@ -66,6 +66,7 @@
 #include <linux/dm9000.h>
 #include <linux/delay.h>
 #include <linux/platform_device.h>
+#include <linux/irq.h>
 
 #include <asm/delay.h>
 #include <asm/irq.h>
@@ -113,7 +114,7 @@
 #define writesl	outsl
 #define DM9000_IRQ_FLAGS	(IRQF_SHARED | IRQF_TRIGGER_HIGH)
 #else
-#define DM9000_IRQ_FLAGS	IRQF_SHARED
+#define DM9000_IRQ_FLAGS	(IRQF_SHARED | IRQT_RISING)
 #endif
 
 /*

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

end of thread, other threads:[~2008-01-15 11:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-11 19:18 DM9000_IRQ_FLAGS Daniel Mack
2007-12-11 20:31 ` DM9000_IRQ_FLAGS Remy Bohmer
2007-12-12 13:41   ` DM9000_IRQ_FLAGS Daniel Mack
2007-12-12 14:46     ` DM9000_IRQ_FLAGS Remy Bohmer
2007-12-12 15:01       ` DM9000_IRQ_FLAGS Daniel Mack
2007-12-20  9:46     ` DM9000_IRQ_FLAGS Ben Dooks
2007-12-20  9:54       ` DM9000_IRQ_FLAGS Remy Bohmer
2008-01-15 11:42         ` DM9000_IRQ_FLAGS Daniel Mack
2007-12-20  9:45 ` DM9000_IRQ_FLAGS Ben Dooks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).