mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
8c26836f5b
*-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-24-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
29 lines
808 B
Makefile
29 lines
808 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
## DMA engines
|
|
snd-soc-dma-sh7760-y := dma-sh7760.o
|
|
obj-$(CONFIG_SND_SOC_PCM_SH7760) += snd-soc-dma-sh7760.o
|
|
|
|
## audio units found on some SH-4
|
|
snd-soc-hac-y := hac.o
|
|
snd-soc-ssi-y := ssi.o
|
|
snd-soc-fsi-y := fsi.o
|
|
snd-soc-siu-y := siu_pcm.o siu_dai.o
|
|
obj-$(CONFIG_SND_SOC_SH4_HAC) += snd-soc-hac.o
|
|
obj-$(CONFIG_SND_SOC_SH4_SSI) += snd-soc-ssi.o
|
|
obj-$(CONFIG_SND_SOC_SH4_FSI) += snd-soc-fsi.o
|
|
obj-$(CONFIG_SND_SOC_SH4_SIU) += snd-soc-siu.o
|
|
|
|
## audio units for R-Car
|
|
obj-$(CONFIG_SND_SOC_RCAR) += rcar/
|
|
|
|
## boards
|
|
snd-soc-sh7760-ac97-y := sh7760-ac97.o
|
|
snd-soc-migor-y := migor.o
|
|
|
|
obj-$(CONFIG_SND_SH7760_AC97) += snd-soc-sh7760-ac97.o
|
|
obj-$(CONFIG_SND_SIU_MIGOR) += snd-soc-migor.o
|
|
|
|
# RZ/G2L
|
|
snd-soc-rz-ssi-y := rz-ssi.o
|
|
obj-$(CONFIG_SND_SOC_RZ) += snd-soc-rz-ssi.o
|