spi: spi-fsl-dspi: Remove usage of devm_kzalloc
devm_* API was supposed to be used only in probe function call. Memory is allocated at 'probe' and free automatically at 'remove'. Usage of devm_* functions outside probe sometimes leads to memory leak. Avoid using devm_kzalloc in dspi_setup_transfer and use kzalloc instead. Also add the dspi_cleanup function to free the controller data upon cleanup. Acked-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Bhuvanchandra DV <bhuvanchandra.dv@toradex.com> Signed-off-by: Mark Brown <broonie@kernel.org> Cc: stable@vger.kernel.org
This commit is contained in:
parent
97bf6af1f9
commit
973fbce69e
|
@ -342,8 +342,7 @@ static int dspi_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
|
||||||
/* Only alloc on first setup */
|
/* Only alloc on first setup */
|
||||||
chip = spi_get_ctldata(spi);
|
chip = spi_get_ctldata(spi);
|
||||||
if (chip == NULL) {
|
if (chip == NULL) {
|
||||||
chip = devm_kzalloc(&spi->dev, sizeof(struct chip_data),
|
chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
|
||||||
GFP_KERNEL);
|
|
||||||
if (!chip)
|
if (!chip)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
@ -382,6 +381,16 @@ static int dspi_setup(struct spi_device *spi)
|
||||||
return dspi_setup_transfer(spi, NULL);
|
return dspi_setup_transfer(spi, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void dspi_cleanup(struct spi_device *spi)
|
||||||
|
{
|
||||||
|
struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi);
|
||||||
|
|
||||||
|
dev_dbg(&spi->dev, "spi_device %u.%u cleanup\n",
|
||||||
|
spi->master->bus_num, spi->chip_select);
|
||||||
|
|
||||||
|
kfree(chip);
|
||||||
|
}
|
||||||
|
|
||||||
static irqreturn_t dspi_interrupt(int irq, void *dev_id)
|
static irqreturn_t dspi_interrupt(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
|
struct fsl_dspi *dspi = (struct fsl_dspi *)dev_id;
|
||||||
|
@ -467,6 +476,7 @@ static int dspi_probe(struct platform_device *pdev)
|
||||||
dspi->bitbang.master->setup = dspi_setup;
|
dspi->bitbang.master->setup = dspi_setup;
|
||||||
dspi->bitbang.master->dev.of_node = pdev->dev.of_node;
|
dspi->bitbang.master->dev.of_node = pdev->dev.of_node;
|
||||||
|
|
||||||
|
master->cleanup = dspi_cleanup;
|
||||||
master->mode_bits = SPI_CPOL | SPI_CPHA;
|
master->mode_bits = SPI_CPOL | SPI_CPHA;
|
||||||
master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
|
master->bits_per_word_mask = SPI_BPW_MASK(4) | SPI_BPW_MASK(8) |
|
||||||
SPI_BPW_MASK(16);
|
SPI_BPW_MASK(16);
|
||||||
|
|
Loading…
Reference in New Issue