mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] net: fix smc91x build for sh/ppc
@ 2004-10-12 16:16 Paul Mundt
  2004-10-12 16:26 ` Nicolas Pitre
  2004-10-13  1:09 ` Hirokazu Takata
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Mundt @ 2004-10-12 16:16 UTC (permalink / raw)
  To: Andrew Morton; +Cc: nico, takata, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 965 bytes --]

The current smc91x code uses set_irq_type(). It looks like the m32r guys
worked around this by adding a !defined(__m32r__) check, but this is equally
bogus as set_irq_type() is an arm/arm26-specific function.

Trying to get this to build on sh died in the same spot, so we just back out
the m32r change and make it depend on CONFIG_ARM instead. Notably, the ppc
build would have been broken by this as well, but it doesn't seem like anyone
noticed this there yet.

Signed-off-by: Paul Mundt <paul.mundt@nokia.com>

 drivers/net/smc91x.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

===== drivers/net/smc91x.c 1.7 vs edited =====
--- 1.7/drivers/net/smc91x.c	2004-09-17 03:07:00 +03:00
+++ edited/drivers/net/smc91x.c	2004-10-12 19:05:25 +03:00
@@ -1885,7 +1885,7 @@
       	if (retval)
       		goto err_out;
 
-#if !defined(__m32r__)
+#ifdef CONFIG_ARM
 	set_irq_type(dev->irq, IRQT_RISING);
 #endif
 #ifdef SMC_USE_PXA_DMA

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

end of thread, other threads:[~2004-10-13  1:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-12 16:16 [PATCH] net: fix smc91x build for sh/ppc Paul Mundt
2004-10-12 16:26 ` Nicolas Pitre
2004-10-13  1:09 ` Hirokazu Takata

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

all inboxes | Powered by JetHome®