[PATCH] Kconfig fix (PHYLIB vs s390)

From: Al Viro
Date: Mon Sep 19 2005 - 13:15:09 EST


drivers/net/phy/phy.c is broken on s390; it uses enable_irq()
and friends and these do not exist on s390. Marked as broken for now.

Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
----
diff -urN RC13-base/drivers/net/phy/Kconfig current/drivers/net/phy/Kconfig
--- RC13-base/drivers/net/phy/Kconfig 2005-08-30 03:24:42.000000000 -0400
+++ current/drivers/net/phy/Kconfig 2005-08-30 03:25:18.000000000 -0400
@@ -6,7 +6,7 @@

config PHYLIB
tristate "PHY Device support and infrastructure"
- depends on NET_ETHERNET
+ depends on NET_ETHERNET && (BROKEN || !ARCH_S390)
help
Ethernet controllers are usually attached to PHY
devices. This option provides infrastructure for
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/