diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-05-07 18:55:08 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-08 05:39:13 +0300 |
commit | 07214013578b156d0fda288a0311d353ea149674 (patch) | |
tree | f65ffbb5a74a6b665eb3d9ce99c04d2936d9d7fa /sound/soc/amd/yc | |
parent | 01e8f66b434f3cca0690f839c417324d7471aa9b (diff) | |
download | linux-07214013578b156d0fda288a0311d353ea149674.tar.xz |
ASoC: amd: Use *-y instead of *-objs in Makefile
*-objs suffix is reserved rather for (user-space) host programs while
usually *-y suffix is used for kernel drivers (although *-objs works
for that purpose for now).
Let's correct the old usages of *-objs in Makefiles.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20240507155540.24815-5-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd/yc')
-rw-r--r-- | sound/soc/amd/yc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/soc/amd/yc/Makefile b/sound/soc/amd/yc/Makefile index dc2974440388..7a0a3a410b2d 100644 --- a/sound/soc/amd/yc/Makefile +++ b/sound/soc/amd/yc/Makefile @@ -1,8 +1,8 @@ # SPDX-License-Identifier: GPL-2.0+ # Yellow Carp platform Support -snd-pci-acp6x-objs := pci-acp6x.o -snd-acp6x-pdm-dma-objs := acp6x-pdm-dma.o -snd-soc-acp6x-mach-objs := acp6x-mach.o +snd-pci-acp6x-y := pci-acp6x.o +snd-acp6x-pdm-dma-y := acp6x-pdm-dma.o +snd-soc-acp6x-mach-y := acp6x-mach.o obj-$(CONFIG_SND_SOC_AMD_ACP6x) += snd-pci-acp6x.o obj-$(CONFIG_SND_SOC_AMD_ACP6x) += snd-acp6x-pdm-dma.o |