diff options
author | David S. Miller <davem@davemloft.net> | 2012-09-22 18:11:32 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-09-22 18:11:32 -0400 |
commit | 5894bab7f452d61941a6d3215dec43221ac0be4b (patch) | |
tree | d360c6522b3ffbd984f582c05ba6e7601e7d5a2c | |
parent | e69bebde46b5ddfb7d8f17cae66031e282ebc464 (diff) | |
download | linux-5894bab7f452d61941a6d3215dec43221ac0be4b.tar.bz2 |
net: Make ZNET driver config depend on X86.
We're now using isa_virt_to_bus(), and there really
isn't a generic and consistent test for whether a
platform provides this interface or not.
This driver is also for an x86-only device.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/i825xx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/i825xx/Kconfig b/drivers/net/ethernet/i825xx/Kconfig index fed5080a6b62..959faf7388e2 100644 --- a/drivers/net/ethernet/i825xx/Kconfig +++ b/drivers/net/ethernet/i825xx/Kconfig @@ -150,7 +150,7 @@ config SUN3_82586 config ZNET tristate "Zenith Z-Note support (EXPERIMENTAL)" - depends on EXPERIMENTAL && ISA_DMA_API + depends on EXPERIMENTAL && ISA_DMA_API && X86 ---help--- The Zenith Z-Note notebook computer has a built-in network (Ethernet) card, and this is the Linux driver for it. Note that the |