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

Commit b308fb20 authored by Florian Fainelli's avatar Florian Fainelli Committed by Mark Brown
Browse files

spi/bcm63xx: remove useless call to bcm63xx_spi_check_transfer()



Calling bcm63xx_spi_check_transfer() with a NULL argument does not do
anything useful that the core spi code is not doing already, remove
this superfluous call.

Signed-off-by: default avatarFlorian Fainelli <florian@openwrt.org>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 96519957
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -169,13 +169,6 @@ static int bcm63xx_spi_setup(struct spi_device *spi)
		return -EINVAL;
	}

	ret = bcm63xx_spi_check_transfer(spi, NULL);
	if (ret < 0) {
		dev_err(&spi->dev, "setup: unsupported mode bits %x\n",
			spi->mode & ~MODEBITS);
		return ret;
	}

	dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
		__func__, spi->mode & MODEBITS, spi->bits_per_word, 0);