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

Commit e07725be authored by Axel Lin's avatar Axel Lin Committed by Mark Brown
Browse files

spi: fsl-dspi: Add missing breaks for switch cases



Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 6ce4eac1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -320,8 +320,10 @@ static void dspi_chipselect(struct spi_device *spi, int value)
	switch (value) {
	case BITBANG_CS_ACTIVE:
		pushr |= SPI_PUSHR_CONT;
		break;
	case BITBANG_CS_INACTIVE:
		pushr &= ~SPI_PUSHR_CONT;
		break;
	}

	writel(pushr, dspi->base + SPI_PUSHR);