Re: [PATCH] cros_ec: use uint instead of uint8_t for cmd param

2019-12-09 Thread Simon Glass
On Mon, 9 Dec 2019 at 13:27, Michael Auchter wrote: > > Chromium EC commands can be up to 16-bits, so using a uint8_t here can > cause truncation. Update to use a uint instead. > > It looks like this should likely have been done as a part of > 9fea76f5d30264dc08ac591a7a89427b8441555b, but this

[PATCH] cros_ec: use uint instead of uint8_t for cmd param

2019-12-09 Thread Michael Auchter
Chromium EC commands can be up to 16-bits, so using a uint8_t here can cause truncation. Update to use a uint instead. It looks like this should likely have been done as a part of 9fea76f5d30264dc08ac591a7a89427b8441555b, but this function was skipped for some reason. Signed-off-by: Michael