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