summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Roxell <anders.roxell@linaro.org>2018-07-27 09:18:49 -0400
committerDavid S. Miller <davem@davemloft.net>2018-07-27 16:19:01 -0400
commit3e4e36436047155f67eafffe3062a09db1dff8df (patch)
tree4cf1142cb75caecb4e150e22453dcbe3b10713d4
parent2e279c930990930953baefb0665ac7dbd16b9aa7 (diff)
net/rds/Kconfig: Correct the RDS depends
Remove prefix 'CONFIG_' from CONFIG_IPV6 Fixes: ba7d7e2677c0 ("net/rds/Kconfig: RDS should depend on IPV6") Reported-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Reviewed-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/rds/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rds/Kconfig b/net/rds/Kconfig
index 607128f10bcd..4c7f2595d919 100644
--- a/net/rds/Kconfig
+++ b/net/rds/Kconfig
@@ -1,7 +1,7 @@
1 1
2config RDS 2config RDS
3 tristate "The RDS Protocol" 3 tristate "The RDS Protocol"
4 depends on INET && CONFIG_IPV6 4 depends on INET && IPV6
5 ---help--- 5 ---help---
6 The RDS (Reliable Datagram Sockets) protocol provides reliable, 6 The RDS (Reliable Datagram Sockets) protocol provides reliable,
7 sequenced delivery of datagrams over Infiniband or TCP. 7 sequenced delivery of datagrams over Infiniband or TCP.