[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20091016133618.13423.38066.stgit@dev.haskins.net>
Date: Fri, 16 Oct 2009 09:36:19 -0400
From: Gregory Haskins <ghaskins@...ell.com>
To: netdev@...r.kernel.org
Cc: linux-kernel@...r.kernel.org,
alacrityvm-devel@...ts.sourceforge.net
Subject: [PATCH 1/2] net: fix vbus-enet Kconfig dependencies
We currently select VBUS_PROXY when vbus-enet is enabled, which is
the wrong direction. Not all platforms will define VBUS-PROXY, and
venet depends on its inclusion. Therefore, lets fix vbus-enet to
properly depend on the presence of VBUS_PROXY to get this right.
Signed-off-by: Gregory Haskins <ghaskins@...ell.com>
---
drivers/net/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 47dfa04..c9128ea 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -3233,7 +3233,7 @@ config VIRTIO_NET
config VBUS_ENET
tristate "VBUS Ethernet Driver"
default n
- select VBUS_PROXY
+ depends on VBUS_PROXY
help
A virtualized 802.x network device based on the VBUS
"virtual-ethernet" interface. It can be used with any
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists