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

Commit 4d551a98 authored by Akash Asthana's avatar Akash Asthana Committed by Gerrit - the friendly Code Review server
Browse files

spi: spi-msm-geni: Convert IB vote into KHz unit



As ICC driver except clients votes in KHz/KBps unit, so change SPI
IB votes from Hz to KHz.

Change-Id: If9c84c3b086514ae7398a04e8c9cd2de99d658eb
Signed-off-by: default avatarAkash Asthana <akashast@codeaurora.org>
parent 3f5605dd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -755,8 +755,8 @@ static int spi_geni_prepare_transfer_hardware(struct spi_master *spi)
	u32 max_speed = spi->cur_msg->spi->max_speed_hz;
	struct se_geni_rsc *rsc = &mas->spi_rsc;

	/* Adjust the IB based on the max speed of the slave.*/
	rsc->ib = max_speed * DEFAULT_BUS_WIDTH;
	/* Adjust the IB based on the max speed of the slave in kHz.*/
	rsc->ib = (max_speed * DEFAULT_BUS_WIDTH) / 1000;
	if (mas->shared_se) {
		struct se_geni_rsc *rsc;
		int ret = 0;