diff options
author | Thomas Hebb <tommyhebb@gmail.com> | 2019-11-10 08:23:55 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-03 08:43:23 -0500 |
commit | 6920f00c2c1b4c9799af0de7e398381a60664d15 (patch) | |
tree | a2d4e4b0c5b720593c2235c780e54241d076f6ff /drivers/serial | |
parent | 37ef1774d445a3275f2ff40be05c8623de50e7d4 (diff) |
Kconfig: make TPL_DM_SERIAL depend on TPL_DM
This missing dependency seems like an oversight, since all other
TPL_DM_* options have it.
Signed-off-by: Thomas Hebb <tommyhebb@gmail.com>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index d36a0108ea..ece7d87d4c 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -145,7 +145,7 @@ config SPL_DM_SERIAL config TPL_DM_SERIAL bool "Enable Driver Model for serial drivers in TPL" - depends on DM_SERIAL + depends on DM_SERIAL && TPL_DM default y if TPL && DM_SERIAL help Enable driver model for serial in TPL. This replaces |