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

Commit 91829a9a authored by Felix Fietkau's avatar Felix Fietkau Committed by Mark Brown
Browse files

spi: spi-ath79: use gpio_set_value_cansleep for GPIO chip select



Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 22c76326
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ static void ath79_spi_chipselect(struct spi_device *spi, int is_active)

	if (gpio_is_valid(spi->cs_gpio)) {
		/* SPI is normally active-low */
		gpio_set_value(spi->cs_gpio, cs_high);
		gpio_set_value_cansleep(spi->cs_gpio, cs_high);
	} else {
		u32 cs_bit = AR71XX_SPI_IOC_CS(spi->chip_select);