]> git.baikalelectronics.ru Git - kernel.git/commit
spi: fix the divide by 0 error when calculating xfer waiting time
authorXu Yilun <yilun.xu@intel.com>
Mon, 4 Jan 2021 01:29:09 +0000 (09:29 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 4 Jan 2021 14:24:58 +0000 (14:24 +0000)
commit865357384576ec657777632e2acd9d9c0c6c373e
treeefe9108d7ae166167454080c8d93a93cf95a23be
parentbb1f9e8d587e10ad296543ef955c38e291924d8f
spi: fix the divide by 0 error when calculating xfer waiting time

The xfer waiting time is the result of xfer->len / xfer->speed_hz. This
patch makes the assumption of 100khz xfer speed if the xfer->speed_hz is
not assigned and stays 0. This avoids the divide by 0 issue and ensures
a reasonable tolerant waiting time.

Signed-off-by: Xu Yilun <yilun.xu@intel.com>
Link: https://lore.kernel.org/r/1609723749-3557-1-git-send-email-yilun.xu@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c