summaryrefslogtreecommitdiffstats
path: root/sound/soc/amd
diff options
context:
space:
mode:
authorVijendar Mukunda <Vijendar.Mukunda@amd.com>2022-07-07 18:56:09 +0530
committerMark Brown <broonie@kernel.org>2022-07-08 11:51:49 +0100
commit8d9cd3ead42a6d3bac131c4331acfa5244674fbb (patch)
tree0f6938c4f4dd700c022cc3544a5b6b47e7544930 /sound/soc/amd
parentd7e5d8d24c1179b36a3cb40b3f785e23a8992acd (diff)
downloadlinux-8d9cd3ead42a6d3bac131c4331acfa5244674fbb.tar.gz
linux-8d9cd3ead42a6d3bac131c4331acfa5244674fbb.tar.bz2
linux-8d9cd3ead42a6d3bac131c4331acfa5244674fbb.zip
ASoC: amd: drop machine driver remove function
Drop machine driver remove() function. Signed-off-by: Vijendar Mukunda <Vijendar.Mukunda@amd.com> Link: https://lore.kernel.org/r/20220707132613.3150931-2-Vijendar.Mukunda@amd.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd')
-rw-r--r--sound/soc/amd/acp-es8336.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sound/soc/amd/acp-es8336.c b/sound/soc/amd/acp-es8336.c
index 54ba399fe596..a9997627f991 100644
--- a/sound/soc/amd/acp-es8336.c
+++ b/sound/soc/amd/acp-es8336.c
@@ -293,11 +293,6 @@ static int st_es8336_probe(struct platform_device *pdev)
return 0;
}
-static int st_es8336_remove(struct platform_device *pdev)
-{
- return 0;
-}
-
#ifdef CONFIG_ACPI
static const struct acpi_device_id st_audio_acpi_match[] = {
{"AMDI8336", 0},
@@ -313,7 +308,6 @@ static struct platform_driver st_mach_driver = {
.pm = &snd_soc_pm_ops,
},
.probe = st_es8336_probe,
- .remove = st_es8336_remove,
};
module_platform_driver(st_mach_driver);