Browse Source

spi: davinci: fix a NULL pointer dereference

On non-OF systems spi->controlled_data may be NULL. This causes a NULL
pointer derefence on dm365-evm.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
Bartosz Golaszewski 7 years ago
parent
commit
563a53f390
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/spi/spi-davinci.c

+ 1 - 1
drivers/spi/spi-davinci.c

@@ -217,7 +217,7 @@ static void davinci_spi_chipselect(struct spi_device *spi, int value)
 	pdata = &dspi->pdata;
 	pdata = &dspi->pdata;
 
 
 	/* program delay transfers if tx_delay is non zero */
 	/* program delay transfers if tx_delay is non zero */
-	if (spicfg->wdelay)
+	if (spicfg && spicfg->wdelay)
 		spidat1 |= SPIDAT1_WDEL;
 		spidat1 |= SPIDAT1_WDEL;
 
 
 	/*
 	/*