summaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-10-14 14:50:19 +0300
committerTom Rini <trini@konsulko.com>2022-10-21 20:47:56 +0300
commit9af4a0c8a6ffb34e968bdcb8bcaf8d97610e53b3 (patch)
tree24f9484afecd8577f324ef1c78bdf141db164ffd /drivers/core
parentf35e37cffd6e57c614ec9de0923ee5d1cff1077f (diff)
downloadu-boot-9af4a0c8a6ffb34e968bdcb8bcaf8d97610e53b3.tar.xz
core: Enable DM by default
There are no longer any platforms which do not enable DM, move this to a def_bool y and remove the check in the Makefile. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index c9bf5de433..0dc442b921 100644
--- a/drivers/core/Kconfig
+++ b/drivers/core/Kconfig
@@ -1,7 +1,7 @@
menu "Generic Driver Options"
config DM
- bool "Enable Driver Model"
+ def_bool y
help
This config option enables Driver Model. This brings in the core
support, including scanning of platform data on start-up. If