Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c48c281e authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Kalle Valo
Browse files

wlcore: spi: remove unnecessary variable



Remove unnecessary variable and refactor the code.

Addresses-Coverity-ID: 1365000
Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 078b30da
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -366,17 +366,14 @@ static int __wl12xx_spi_raw_write(struct device *child, int addr,
static int __must_check wl12xx_spi_raw_write(struct device *child, int addr,
					     void *buf, size_t len, bool fixed)
{
	int ret;

	/* The ELP wakeup write may fail the first time due to internal
	 * hardware latency. It is safer to send the wakeup command twice to
	 * avoid unexpected failures.
	 */
	if (addr == HW_ACCESS_ELP_CTRL_REG)
		ret = __wl12xx_spi_raw_write(child, addr, buf, len, fixed);
	ret = __wl12xx_spi_raw_write(child, addr, buf, len, fixed);
		__wl12xx_spi_raw_write(child, addr, buf, len, fixed);

	return ret;
	return __wl12xx_spi_raw_write(child, addr, buf, len, fixed);
}

/**