mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 15:41:36 +00:00
9c2f5b6eb8
*-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-25-tiwai@suse.de Signed-off-by: Mark Brown <broonie@kernel.org>
12 lines
388 B
Makefile
12 lines
388 B
Makefile
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
snd-sof-imx8-y := imx8.o
|
|
snd-sof-imx8m-y := imx8m.o
|
|
snd-sof-imx8ulp-y := imx8ulp.o
|
|
|
|
snd-sof-imx-common-y := imx-common.o
|
|
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX8) += snd-sof-imx8.o
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX8M) += snd-sof-imx8m.o
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX8ULP) += snd-sof-imx8ulp.o
|
|
obj-$(CONFIG_SND_SOC_SOF_IMX_COMMON) += imx-common.o
|