diff options
| author | Tom Rini <[email protected]> | 2022-10-14 07:50:19 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-10-21 13:47:56 -0400 |
| commit | 9af4a0c8a6ffb34e968bdcb8bcaf8d97610e53b3 (patch) | |
| tree | 24f9484afecd8577f324ef1c78bdf141db164ffd /drivers/core | |
| parent | f35e37cffd6e57c614ec9de0923ee5d1cff1077f (diff) | |
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 <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/core')
| -rw-r--r-- | drivers/core/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig index c9bf5de4332..0dc442b921c 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 |
