Home
last modified time | relevance | path

Searched hist:"3 f51a772d4b7dccc2d379762a03535408b602e54" (Results 1 – 1 of 1) sorted by relevance

/rk3399_rockchip-uboot/drivers/misc/
H A Dcros_ec_sandbox.c3f51a772d4b7dccc2d379762a03535408b602e54 Fri Nov 06 13:15:37 UTC 2015 Daniel Schwierzeck <daniel.schwierzeck@gmail.com> sandbox: cros_ec: fix uninitialized use of len

Building with gcc-5.2 raises this warning:

drivers/misc/cros_ec_sandbox.c: In function cros_ec_sandbox_packet:
drivers/misc/cros_ec_sandbox.c:483:5: warning: len may be used uninitialized in this function [-Wmaybe-uninitialized]
if (len < 0)
^

If the function process_cmd() is called with
req_hdr->command == EC_CMD_ENTERING_MODE, the value of len will be
returned uninitialized.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>