summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/Kconfig7
-rw-r--r--commands/oftree.c2
2 files changed, 1 insertions, 8 deletions
diff --git a/commands/Kconfig b/commands/Kconfig
index c8f06d8c81..00627580ef 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -486,13 +486,6 @@ config CMD_OFTREE
The oftree command has support for dumping devicetrees and, if
enabled, to probe devices from the devicetree
-config CMD_OFTREE_PROBE
- bool
- depends on CMD_OFTREE
- prompt "oftree probe support"
- help
- This enables the -p option to probe devices from the devicetree
-
config CMD_OF_PROPERTY
tristate
select OFTREE
diff --git a/commands/oftree.c b/commands/oftree.c
index 612d01afa5..e4f52b851c 100644
--- a/commands/oftree.c
+++ b/commands/oftree.c
@@ -64,7 +64,7 @@ static int do_oftree(int argc, char *argv[])
dump = 1;
break;
case 'p':
- if (IS_ENABLED(CONFIG_CMD_OFTREE_PROBE)) {
+ if (IS_ENABLED(CONFIG_OFDEVICE)) {
probe = 1;
} else {
printf("oftree device probe support disabled\n");