mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
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>
This commit is contained in:
parent
01e8f66b43
commit
0721401357
@ -1,10 +1,10 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
acp_audio_dma-objs := acp-pcm-dma.o
|
||||
snd-soc-acp-da7219mx98357-mach-objs := acp-da7219-max98357a.o
|
||||
snd-soc-acp-rt5645-mach-objs := acp-rt5645.o
|
||||
snd-soc-acp-es8336-mach-objs := acp-es8336.o
|
||||
snd-soc-acp-rt5682-mach-objs := acp3x-rt5682-max9836.o
|
||||
snd-acp-config-objs := acp-config.o
|
||||
acp_audio_dma-y := acp-pcm-dma.o
|
||||
snd-soc-acp-da7219mx98357-mach-y := acp-da7219-max98357a.o
|
||||
snd-soc-acp-rt5645-mach-y := acp-rt5645.o
|
||||
snd-soc-acp-es8336-mach-y := acp-es8336.o
|
||||
snd-soc-acp-rt5682-mach-y := acp3x-rt5682-max9836.o
|
||||
snd-acp-config-y := acp-config.o
|
||||
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP) += acp_audio_dma.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH) += snd-soc-acp-da7219mx98357-mach.o
|
||||
|
@ -5,23 +5,23 @@
|
||||
# Copyright(c) 2021 Advanced Micro Devices, Inc. All rights reserved.
|
||||
|
||||
#common acp driver
|
||||
snd-acp-pcm-objs := acp-platform.o
|
||||
snd-acp-i2s-objs := acp-i2s.o
|
||||
snd-acp-pdm-objs := acp-pdm.o
|
||||
snd-acp-legacy-common-objs := acp-legacy-common.o
|
||||
snd-acp-pci-objs := acp-pci.o
|
||||
snd-amd-sdw-acpi-objs := amd-sdw-acpi.o
|
||||
snd-acp-pcm-y := acp-platform.o
|
||||
snd-acp-i2s-y := acp-i2s.o
|
||||
snd-acp-pdm-y := acp-pdm.o
|
||||
snd-acp-legacy-common-y := acp-legacy-common.o
|
||||
snd-acp-pci-y := acp-pci.o
|
||||
snd-amd-sdw-acpi-y := amd-sdw-acpi.o
|
||||
|
||||
#platform specific driver
|
||||
snd-acp-renoir-objs := acp-renoir.o
|
||||
snd-acp-rembrandt-objs := acp-rembrandt.o
|
||||
snd-acp63-objs := acp63.o
|
||||
snd-acp70-objs := acp70.o
|
||||
snd-acp-renoir-y := acp-renoir.o
|
||||
snd-acp-rembrandt-y := acp-rembrandt.o
|
||||
snd-acp63-y := acp63.o
|
||||
snd-acp70-y := acp70.o
|
||||
|
||||
#machine specific driver
|
||||
snd-acp-mach-objs := acp-mach-common.o
|
||||
snd-acp-legacy-mach-objs := acp-legacy-mach.o acp3x-es83xx/acp3x-es83xx.o
|
||||
snd-acp-sof-mach-objs := acp-sof-mach.o
|
||||
snd-acp-mach-y := acp-mach-common.o
|
||||
snd-acp-legacy-mach-y := acp-legacy-mach.o acp3x-es83xx/acp3x-es83xx.o
|
||||
snd-acp-sof-mach-y := acp-sof-mach.o
|
||||
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP_PCM) += snd-acp-pcm.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP_I2S) += snd-acp-i2s.o
|
||||
|
@ -1,9 +1,9 @@
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
# Pink Sardine platform Support
|
||||
snd-pci-ps-objs := pci-ps.o
|
||||
snd-ps-pdm-dma-objs := ps-pdm-dma.o
|
||||
snd-soc-ps-mach-objs := ps-mach.o
|
||||
snd-ps-sdw-dma-objs := ps-sdw-dma.o
|
||||
snd-pci-ps-y := pci-ps.o
|
||||
snd-ps-pdm-dma-y := ps-pdm-dma.o
|
||||
snd-soc-ps-mach-y := ps-mach.o
|
||||
snd-ps-sdw-dma-y := ps-sdw-dma.o
|
||||
|
||||
obj-$(CONFIG_SND_SOC_AMD_PS) += snd-pci-ps.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_PS) += snd-ps-pdm-dma.o
|
||||
|
@ -1,8 +1,8 @@
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
# Raven Ridge platform Support
|
||||
snd-pci-acp3x-objs := pci-acp3x.o
|
||||
snd-acp3x-pcm-dma-objs := acp3x-pcm-dma.o
|
||||
snd-acp3x-i2s-objs := acp3x-i2s.o
|
||||
snd-pci-acp3x-y := pci-acp3x.o
|
||||
snd-acp3x-pcm-dma-y := acp3x-pcm-dma.o
|
||||
snd-acp3x-i2s-y := acp3x-i2s.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP3x) += snd-pci-acp3x.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP3x) += snd-acp3x-pcm-dma.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP3x) += snd-acp3x-i2s.o
|
||||
|
@ -1,8 +1,8 @@
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
# Renoir platform Support
|
||||
snd-rn-pci-acp3x-objs := rn-pci-acp3x.o
|
||||
snd-acp3x-pdm-dma-objs := acp3x-pdm-dma.o
|
||||
snd-acp3x-rn-objs := acp3x-rn.o
|
||||
snd-rn-pci-acp3x-y := rn-pci-acp3x.o
|
||||
snd-acp3x-pdm-dma-y := acp3x-pdm-dma.o
|
||||
snd-acp3x-rn-y := acp3x-rn.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_RENOIR) += snd-rn-pci-acp3x.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_RENOIR) += snd-acp3x-pdm-dma.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_RENOIR_MACH) += snd-acp3x-rn.o
|
||||
|
@ -1,5 +1,5 @@
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
# RPL platform Support
|
||||
snd-rpl-pci-acp6x-objs := rpl-pci-acp6x.o
|
||||
snd-rpl-pci-acp6x-y := rpl-pci-acp6x.o
|
||||
|
||||
obj-$(CONFIG_SND_SOC_AMD_RPL_ACP6x) += snd-rpl-pci-acp6x.o
|
||||
|
@ -1,9 +1,9 @@
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
# Vangogh platform Support
|
||||
snd-pci-acp5x-objs := pci-acp5x.o
|
||||
snd-acp5x-i2s-objs := acp5x-i2s.o
|
||||
snd-acp5x-pcm-dma-objs := acp5x-pcm-dma.o
|
||||
snd-soc-acp5x-mach-objs := acp5x-mach.o
|
||||
snd-pci-acp5x-y := pci-acp5x.o
|
||||
snd-acp5x-i2s-y := acp5x-i2s.o
|
||||
snd-acp5x-pcm-dma-y := acp5x-pcm-dma.o
|
||||
snd-soc-acp5x-mach-y := acp5x-mach.o
|
||||
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP5x) += snd-pci-acp5x.o
|
||||
obj-$(CONFIG_SND_SOC_AMD_ACP5x) += snd-acp5x-i2s.o
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user