spi: pxa2xx: Use gpiod_put() not gpiod_free()
gpiod_free() is an internal function for gpiolib, gpiod_put() is the correct external function. Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Suggested-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
221886646f
commit
a885eebc1b
@ -1237,7 +1237,7 @@ static int setup_cs(struct spi_device *spi, struct chip_data *chip,
|
|||||||
* different chip_info, release previously requested GPIO
|
* different chip_info, release previously requested GPIO
|
||||||
*/
|
*/
|
||||||
if (chip->gpiod_cs) {
|
if (chip->gpiod_cs) {
|
||||||
gpiod_free(chip->gpiod_cs);
|
gpiod_put(chip->gpiod_cs);
|
||||||
chip->gpiod_cs = NULL;
|
chip->gpiod_cs = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1417,7 +1417,7 @@ static void cleanup(struct spi_device *spi)
|
|||||||
|
|
||||||
if (drv_data->ssp_type != CE4100_SSP && !drv_data->cs_gpiods &&
|
if (drv_data->ssp_type != CE4100_SSP && !drv_data->cs_gpiods &&
|
||||||
chip->gpiod_cs)
|
chip->gpiod_cs)
|
||||||
gpiod_free(chip->gpiod_cs);
|
gpiod_put(chip->gpiod_cs);
|
||||||
|
|
||||||
kfree(chip);
|
kfree(chip);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user