aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2011-05-19 19:23:28 -0400
committerDavid S. Miller <davem@davemloft.net>2011-05-19 19:23:28 -0400
commit034cfe48d0efc248ba4b725e3a94b95e76fbc5d3 (patch)
treee5a9079bd3b40f1ef4dd9f88d75a79b862f073a0 /net
parent8ce6eb1a4a4bc46820f23e927377d386d3ec5404 (diff)
networking: NET_CLS_ROUTE4 depends on INET
IP_ROUTE_CLASSID depends on INET and NET_CLS_ROUTE4 selects IP_ROUTE_CLASSID, but when INET is not enabled, this kconfig warning is produced, so fix it by making NET_CLS_ROUTE4 depend on INET. warning: (NET_CLS_ROUTE4) selects IP_ROUTE_CLASSID which has unmet direct dependencies (NET && INET) Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sched/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/Kconfig b/net/sched/Kconfig
index aeaa2110b699..2590e91b3289 100644
--- a/net/sched/Kconfig
+++ b/net/sched/Kconfig
@@ -288,6 +288,7 @@ config NET_CLS_TCINDEX
288 288
289config NET_CLS_ROUTE4 289config NET_CLS_ROUTE4
290 tristate "Routing decision (ROUTE)" 290 tristate "Routing decision (ROUTE)"
291 depends on INET
291 select IP_ROUTE_CLASSID 292 select IP_ROUTE_CLASSID
292 select NET_CLS 293 select NET_CLS
293 ---help--- 294 ---help---