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

ASoC: bt-sco: 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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20221212205406.3771071-9-u.kleine-koenig@pengutronix.deSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 06e8ce87
...@@ -78,11 +78,6 @@ static int bt_sco_probe(struct platform_device *pdev) ...@@ -78,11 +78,6 @@ static int bt_sco_probe(struct platform_device *pdev)
bt_sco_dai, ARRAY_SIZE(bt_sco_dai)); bt_sco_dai, ARRAY_SIZE(bt_sco_dai));
} }
static int bt_sco_remove(struct platform_device *pdev)
{
return 0;
}
static const struct platform_device_id bt_sco_driver_ids[] = { static const struct platform_device_id bt_sco_driver_ids[] = {
{ {
.name = "dfbmcs320", .name = "dfbmcs320",
...@@ -109,7 +104,6 @@ static struct platform_driver bt_sco_driver = { ...@@ -109,7 +104,6 @@ static struct platform_driver bt_sco_driver = {
.of_match_table = of_match_ptr(bt_sco_codec_of_match), .of_match_table = of_match_ptr(bt_sco_codec_of_match),
}, },
.probe = bt_sco_probe, .probe = bt_sco_probe,
.remove = bt_sco_remove,
.id_table = bt_sco_driver_ids, .id_table = bt_sco_driver_ids,
}; };
......
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