commit | d16bf2d948f4e330a6a01440594e23f3d1a68b41 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Nov 13 14:22:15 2016 -0700 |
committer | Simon Glass <sjg@chromium.org> | Fri Nov 25 17:59:32 2016 -0700 |
tree | b50fde359b56a85b0e52e3557780e8ec6cc03748 | |
parent | 9293fa45315d1f802deac878552010e1be841a02 [diff] |
rockchip: video: Avoid using u8 in the HDMI driver It makes not sense using u8 to hold a value on a 32-bit or 64-bit machine. It can only bloat the code by forcing the compiler to mask the value. Change it to uint. Signed-off-by: Simon Glass <sjg@chromium.org>