diff options
author | Akshu Agrawal <akshu.agrawal@amd.com> | 2017-11-08 20:24:02 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-11-08 21:32:46 +0300 |
commit | bdd2a858afd55cc11723df9dd2841241a4c49ce5 (patch) | |
tree | 1be92f206890de15ec0199c7957957ac867d7327 /sound/soc/amd/Makefile | |
parent | 61add8147942d23519b91f0edc30980d7c14482c (diff) | |
download | linux-bdd2a858afd55cc11723df9dd2841241a4c49ce5.tar.xz |
ASoC: amd: Make the driver name consistent across files
This fixes the issue of driver not getting auto loaded with
MODULE_ALIAS.
find /sys/devices -name modalias -print0 | xargs -0 grep 'audio'
/sys/devices/pci0000:00/0000:00:01.0/acp_audio_dma.0.auto/modalias:platform:acp_audio_dma
TEST=boot and check for device in lsmod
[Removed yet more ChromeOS crap from the changelog -- broonie]
Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com>
Tested-by: Jason Clinton <jclinton@chromium.org>
Reviewed-by: Jason Clinton <jclinton@chromium.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd/Makefile')
-rw-r--r-- | sound/soc/amd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/amd/Makefile b/sound/soc/amd/Makefile index eed64ff6c73e..f07fd2e2870a 100644 --- a/sound/soc/amd/Makefile +++ b/sound/soc/amd/Makefile @@ -1,5 +1,5 @@ -snd-soc-acp-pcm-objs := acp-pcm-dma.o +acp_audio_dma-objs := acp-pcm-dma.o snd-soc-acp-rt5645-mach-objs := acp-rt5645.o -obj-$(CONFIG_SND_SOC_AMD_ACP) += snd-soc-acp-pcm.o +obj-$(CONFIG_SND_SOC_AMD_ACP) += acp_audio_dma.o obj-$(CONFIG_SND_SOC_AMD_CZ_RT5645_MACH) += snd-soc-acp-rt5645-mach.o |