diff options
author | Evgeniy Polyakov <johnpol@2ka.mipt.ru> | 2006-04-27 11:40:27 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-22 14:22:51 -0400 |
commit | 30841711c88dc2d9ce31bfa3fa5479aa823804cf (patch) | |
tree | f06a08530d844e17925179a0703dda6fc334e5d9 /drivers/w1 | |
parent | 6a873403d387c34c4466cc81649acc8acd66874d (diff) |
[PATCH] w1: clean up W1_CON dependency.
If w1 is not enabled, w1_con should not appear in configuration,
even if no logic is turned on without w1.
W1_CON should depend on W1 also.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/w1')
-rw-r--r-- | drivers/w1/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/Kconfig b/drivers/w1/Kconfig index 0c6c4359bf7b..f2d9a08e89ae 100644 --- a/drivers/w1/Kconfig +++ b/drivers/w1/Kconfig | |||
@@ -12,7 +12,7 @@ config W1 | |||
12 | will be called wire.ko. | 12 | will be called wire.ko. |
13 | 13 | ||
14 | config W1_CON | 14 | config W1_CON |
15 | depends on CONNECTOR | 15 | depends on CONNECTOR && W1 |
16 | bool "Userspace communication over connector" | 16 | bool "Userspace communication over connector" |
17 | default y | 17 | default y |
18 | --- help --- | 18 | --- help --- |