diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-03-29 03:03:37 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-29 06:01:13 -0400 |
commit | d1c18caace25aa8b6fcfe4dc78e96a031f1eab2d (patch) | |
tree | cbd1c6b5671e58a3353c469d920aac24702f82c2 | |
parent | 31804f638ef213f78f4a5ee896c4226ba55ab415 (diff) |
spi: omap-100k: Fix memory leak
The memory allocated for cs is not freed anywhere.
Convert to use devm_kzalloc to fix the memory leak.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | drivers/spi/spi-omap-100k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-omap-100k.c b/drivers/spi/spi-omap-100k.c index c9e228242643..e7ffcded4e14 100644 --- a/drivers/spi/spi-omap-100k.c +++ b/drivers/spi/spi-omap-100k.c | |||
@@ -283,7 +283,7 @@ static int omap1_spi100k_setup(struct spi_device *spi) | |||
283 | spi100k = spi_master_get_devdata(spi->master); | 283 | spi100k = spi_master_get_devdata(spi->master); |
284 | 284 | ||
285 | if (!cs) { | 285 | if (!cs) { |
286 | cs = kzalloc(sizeof(*cs), GFP_KERNEL); | 286 | cs = devm_kzalloc(&spi->dev, sizeof(*cs), GFP_KERNEL); |
287 | if (!cs) | 287 | if (!cs) |
288 | return -ENOMEM; | 288 | return -ENOMEM; |
289 | cs->base = spi100k->base + spi->chip_select * 0x14; | 289 | cs->base = spi100k->base + spi->chip_select * 0x14; |