commit | 6c1ca6ba2121b8b98cb56a9a52ad9ee88dc8c093 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Fri Dec 20 18:10:34 2019 -0700 |
committer | Anatolij Gustschin <agust@denx.de> | Thu Jan 02 16:25:25 2020 +0100 |
tree | 720d990438f8ddb5246fc9e6d964f0adeedd8f6c | |
parent | f48556692bd1eee8104ad89ffb060a58fe34bc4b [diff] |
video: Avoid using #ifdef in video blitting code 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 IS_ENABLED() instead. Signed-off-by: Simon Glass <sjg@chromium.org>