commit | 095e6c1f2dd65635543859ddf689e3d90ab6e5cd | [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 | 20b13e8d7ef1b5ac93e4f1c0addae126b05eaf90 [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>