commit | a4a43c63c8d0e3c0c9692d4daf321ed1484469f6 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Fri Dec 20 18:10:36 2019 -0700 |
committer | Anatolij Gustschin <agust@denx.de> | Thu Jan 02 16:25:25 2020 +0100 |
tree | c7b2db6704d8e12aebb98b2cce2cac359d84474f | |
parent | a75ddd0d9caaf771f6049591c9e29766bd2e6120 [diff] |
video: Avoid using #ifdef in vidconsole-uclass.c This code does not really need to use #ifdef. We can use if() instead and gain build coverage without impacting code size. Change the #ifdefs to use CONFIG_IS_ENABLED() instead. Signed-off-by: Simon Glass <sjg@chromium.org>