cros_ec: Use uint instead of u8 for parameters
authorSimon Glass <sjg@chromium.org>
Tue, 6 Nov 2018 22:21:18 +0000 (15:21 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 21 Nov 2018 02:14:22 +0000 (19:14 -0700)
commit9fea76f5d30264dc08ac591a7a89427b8441555b
tree04670175fa5cbf05856962fa75729e08a0a07b61
parent6af7101b75d0e30cf7ed7d1f57fdb68ed5f8ffa0
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>
drivers/misc/cros_ec.c