diff options
author | Benson Leung <bleung@chromium.org> | 2020-04-07 23:36:06 +0200 |
---|---|---|
committer | Benson Leung <bleung@chromium.org> | 2020-04-07 23:42:08 +0200 |
commit | a46387712da12b61bf1ce1a3f63b60a17b098960 (patch) | |
tree | d9715839c6b7674ef729a464222f3734a1f29bca /drivers/platform/chrome | |
parent | iio: cros_ec: Use Hertz as unit for sampling frequency (diff) | |
download | linux-a46387712da12b61bf1ce1a3f63b60a17b098960.tar.xz linux-a46387712da12b61bf1ce1a3f63b60a17b098960.zip |
platform/chrome: cros_ec_spi: Wait for USECS, not NSECS
The use of `delay_usecs` in terminate_request() was replaced with the new
`delay` struct used by the SPI subsystem, however the unit was
set to SPI_DELAY_UNIT_NSECS instead of SPI_DELAY_UNIT_USECS. This fixes that.
Fixes: 7d3ca507fda9 ("platform/chrome: cros_ec_spi: Use new structure for SPI transfer delays")
Signed-off-by: Benson Leung <bleung@chromium.org>
Diffstat (limited to 'drivers/platform/chrome')
-rw-r--r-- | drivers/platform/chrome/cros_ec_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_ec_spi.c b/drivers/platform/chrome/cros_ec_spi.c index 665ab154bb4f..debea5c4c829 100644 --- a/drivers/platform/chrome/cros_ec_spi.c +++ b/drivers/platform/chrome/cros_ec_spi.c @@ -128,7 +128,7 @@ static int terminate_request(struct cros_ec_device *ec_dev) spi_message_init(&msg); memset(&trans, 0, sizeof(trans)); trans.delay.value = ec_spi->end_of_msg_delay; - trans.delay.unit = SPI_DELAY_UNIT_NSECS; + trans.delay.unit = SPI_DELAY_UNIT_USECS; spi_message_add_tail(&trans, &msg); ret = spi_sync_locked(ec_spi->spi, &msg); |