summaryrefslogtreecommitdiff
path: root/drivers/serial
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2020-01-16 09:40:09 -0500
committerTom Rini <[email protected]>2020-01-16 09:40:09 -0500
commitf47704d4ae494ebc8a25c95202e548ea32f98955 (patch)
tree1fe12b692cf15f97aafb17ab4261e8d8106a797a /drivers/serial
parent9d5d74c3ccdc78bac969d25e98eab96872e33b5c (diff)
parent7b2e07ad34170c82a098b47a756311dec5e8e04a (diff)
Merge branch '2020-01-15-master-imports'
- MediaTek improvements - Some generic clk improvements - A few assorted bugfixes
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig
index ece7d87d4ca..bd95f70b61c 100644
--- a/drivers/serial/Kconfig
+++ b/drivers/serial/Kconfig
@@ -100,6 +100,7 @@ config CONS_INDEX
config DM_SERIAL
bool "Enable Driver Model for serial drivers"
depends on DM
+ select SYS_MALLOC_F
help
Enable driver model for serial. This replaces
drivers/serial/serial.c with the serial uclass, which
@@ -136,6 +137,7 @@ config SERIAL_SEARCH_ALL
config SPL_DM_SERIAL
bool "Enable Driver Model for serial drivers in SPL"
depends on DM_SERIAL && SPL_DM
+ select SYS_SPL_MALLOC_F
default y
help
Enable driver model for serial in SPL. This replaces
@@ -146,6 +148,7 @@ config SPL_DM_SERIAL
config TPL_DM_SERIAL
bool "Enable Driver Model for serial drivers in TPL"
depends on DM_SERIAL && TPL_DM
+ select SYS_TPL_MALLOC_F
default y if TPL && DM_SERIAL
help
Enable driver model for serial in TPL. This replaces