mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
ASoc: wm8731: 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: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20211020125803.23117-1-u.kleine-koenig@pengutronix.de Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
a6d968a3e8
commit
8b27cb2e6d
@ -713,18 +713,12 @@ static int wm8731_spi_probe(struct spi_device *spi)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int wm8731_spi_remove(struct spi_device *spi)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct spi_driver wm8731_spi_driver = {
|
static struct spi_driver wm8731_spi_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "wm8731",
|
.name = "wm8731",
|
||||||
.of_match_table = wm8731_of_match,
|
.of_match_table = wm8731_of_match,
|
||||||
},
|
},
|
||||||
.probe = wm8731_spi_probe,
|
.probe = wm8731_spi_probe,
|
||||||
.remove = wm8731_spi_remove,
|
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_SPI_MASTER */
|
#endif /* CONFIG_SPI_MASTER */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user