Commit 03f0267b authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Mark Brown

ASoc: wm8900: Drop empty spi_driver remove callback

A driver with a remove callback that just returns 0 behaves identically
to a driver with no remove callback at all. So simplify accordingly.
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20211020125726.22946-1-u.kleine-koenig@pengutronix.deSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 824edd86
...@@ -1252,17 +1252,11 @@ static int wm8900_spi_probe(struct spi_device *spi) ...@@ -1252,17 +1252,11 @@ static int wm8900_spi_probe(struct spi_device *spi)
return ret; return ret;
} }
static int wm8900_spi_remove(struct spi_device *spi)
{
return 0;
}
static struct spi_driver wm8900_spi_driver = { static struct spi_driver wm8900_spi_driver = {
.driver = { .driver = {
.name = "wm8900", .name = "wm8900",
}, },
.probe = wm8900_spi_probe, .probe = wm8900_spi_probe,
.remove = wm8900_spi_remove,
}; };
#endif /* CONFIG_SPI_MASTER */ #endif /* CONFIG_SPI_MASTER */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment