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

Commit e5dc88d6 authored by Aniket Randive's avatar Aniket Randive
Browse files

spi: spi-msm-geni: Set the mode1 for SPI slave



Spi slave will support only mode1, so set the CPHA parameter
for spi slave.

wrongly added condition by merge conflict, hence removing it.

Change-Id: I37f9b159b01c9253de1a9e8b46e41160fa940660
Signed-off-by: default avatarAniket Randive <arandive@codeaurora.org>
parent 1e18bf1c
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
 * Copyright (c) 2017-2021, The Linux Foundation. All rights reserved.
 */


@@ -359,10 +359,8 @@ static int setup_fifo_params(struct spi_device *spi_slv,
	if (mode & SPI_CPOL)
		cpol |= CPOL;

	if (!spi->slave) {
	if (mode & SPI_CPHA)
		cpha |= CPHA;
	}

	/* SPI slave supports only mode 1, log unsuppoted mode and exit */
	if (spi->slave && !(cpol == 0 && cpha == 1)) {