commit | 3a23951e725dac4183c33c8840ff0ccdc2f53d27 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Tue Nov 06 15:21:18 2018 -0700 |
committer | Simon Glass <sjg@chromium.org> | Tue Nov 20 19:14:22 2018 -0700 |
tree | 04670175fa5cbf05856962fa75729e08a0a07b61 | |
parent | 071a17868e60b3d2d5b708f74fbec9401ec58648 [diff] |
cros_ec: Use uint instead of u8 for parameters There is no advantage to using a u8 for function parameters. It forces the compiler to mask values and can increase code size. Also the command enum has been extended to 16 bits. Update the functions to use uint instead. Signed-off-by: Simon Glass <sjg@chromium.org>