mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
cros_ec: spi: disable annoying key echo on console
on Peach-pi console every key press is echoed with message 'cros_ec_command: Returned status 1' this is not proper fix, just hack to disable this message Signed-off-by: Milan P. Stanić <mps@arvanta.net> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ce0e9e3990
commit
1f46e8af42
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ int cros_ec_spi_command(struct udevice *udev, uint8_t cmd, int cmd_version,
|
|||
|
||||
/* Response code is first byte of message */
|
||||
if (p[0] != EC_RES_SUCCESS) {
|
||||
printf("%s: Returned status %d\n", __func__, p[0]);
|
||||
log_debug("Returned status %d\n", p[0]);
|
||||
return -(int)(p[0]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue