diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2022-12-12 21:53:56 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-12-25 23:32:45 +0000 |
commit | 9fbfe1d1acf596b5ba9ddbb145c7be6a09b2f1eb (patch) | |
tree | f21059d52754bf59f7d132fd4d1089e95599f04b | |
parent | edf2ceb9a2a279d350fdb57c1930554c8675b2b1 (diff) |
ASoC: 88pm860x: Drop empty platform remove function
A remove callback just returning 0 is equivalent to no remove callback
at all. So drop the useless function.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20221212205406.3771071-6-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/88pm860x-codec.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/soc/codecs/88pm860x-codec.c b/sound/soc/codecs/88pm860x-codec.c index fc65283031cd..3574c68e0dda 100644 --- a/sound/soc/codecs/88pm860x-codec.c +++ b/sound/soc/codecs/88pm860x-codec.c @@ -1386,17 +1386,11 @@ static int pm860x_codec_probe(struct platform_device *pdev) return ret; } -static int pm860x_codec_remove(struct platform_device *pdev) -{ - return 0; -} - static struct platform_driver pm860x_codec_driver = { .driver = { .name = "88pm860x-codec", }, .probe = pm860x_codec_probe, - .remove = pm860x_codec_remove, }; module_platform_driver(pm860x_codec_driver); |