commit | 46421197d51df7f050e9b0bdcd3edd0df3eaaf35 | [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 | 512563ba0b97ab3546d7c43211d158f1f50f38ad [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>