diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-22 05:03:50 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-01-28 17:58:41 -0500 |
commit | 9053374648f47311a55819e45a52e69a184b6182 (patch) | |
tree | 5539264f00c43da45532de6cdc0bb9125d2cef79 /Makefile | |
parent | bfb2a7fbd168776f50f715818dbe7822cf65aa96 (diff) | |
download | u-boot-9053374648f47311a55819e45a52e69a184b6182.tar.gz u-boot-9053374648f47311a55819e45a52e69a184b6182.tar.bz2 u-boot-9053374648f47311a55819e45a52e69a184b6182.zip |
dm: serial: Add a migration deadline for serial
This probably should have been done a while back since it is a core
system. Very few boards remain to be migrated.
Addd a migration deadline for a year out.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1133,6 +1133,7 @@ endif @# confuses this rule. Use if() to send just a single character which @# is enable to tell 'deprecated' that one of these symbols exists $(call deprecated,CONFIG_TIMER,Timer drivers,v2023.01,$(if $(strip $(CONFIG_SYS_TIMER_RATE)$(CONFIG_SYS_TIMER_COUNTER)),x)) + $(call deprecated,CONFIG_DM_SERIAL,Serial drivers,v2023.04,$(CONFIG_SERIAL)) @# Check that this build does not use CONFIG options that we do not @# know about unless they are in Kconfig. All the existing CONFIG @# options are whitelisted, so new ones should not be added. |