Message ID | 760be709-74d1-14cc-fecf-433786e123aa@nskint.co.jp |
---|---|
State | Superseded |
Headers | show |
Series | spi: spi-cadence-quadspi: Fix division by zero warning | expand |
On Fri, Jul 16, 2021 at 03:07:21AM +0000, Yoshitaka Ikeda wrote: > Revert to change to a better code. > > This reverts commit 55cef88bbf12f3bfbe5c2379a8868a034707e755. > --- > drivers/spi/spi-cadence-quadspi.c | 10 ++++------ You've not provided a Signed-off-by for this so I can't do anything with it, please see Documentation/process/submitting-patches.rst for details on what this is and why it's important.
On 2021/07/16 21:23, Mark Brown wrote: > You've not provided a Signed-off-by for this so I can't do anything with > it, please see Documentation/process/submitting-patches.rst for details > on what this is and why it's important. I'm sorry, I was wrong. I will resubmit the patch separately.
diff --git a/drivers/spi/spi-cadence-quadspi.c b/drivers/spi/spi-cadence-quadspi.c index 13d1f0ce618e..7a00346ff9b9 100644 --- a/drivers/spi/spi-cadence-quadspi.c +++ b/drivers/spi/spi-cadence-quadspi.c @@ -307,13 +307,11 @@ static unsigned int cqspi_calc_rdreg(struct cqspi_flash_pdata *f_pdata) static unsigned int cqspi_calc_dummy(const struct spi_mem_op *op, bool dtr) { - unsigned int dummy_clk = 0; + unsigned int dummy_clk; - if (op->dummy.buswidth && op->dummy.nbytes) { - dummy_clk = op->dummy.nbytes * (8 / op->dummy.buswidth); - if (dtr) - dummy_clk /= 2; - } + dummy_clk = op->dummy.nbytes * (8 / op->dummy.buswidth); + if (dtr) + dummy_clk /= 2; return dummy_clk; }