diff options
| author | Takashi Iwai <tiwai@suse.de> | 2024-05-07 17:55:28 +0200 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2024-05-08 11:39:30 +0900 |
| commit | 9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0 (patch) | |
| tree | 08d3c6ba410320054bbe0758cbd481088bede80a /sound/soc/sof/imx | |
| parent | 8c26836f5bade6d8aef415bdbe8d290b8bb8a5d9 (diff) | |
| download | linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.tar.gz linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.tar.bz2 linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.zip | |
ASoC: SOF: 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-25-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/sof/imx')
| -rw-r--r-- | sound/soc/sof/imx/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/sof/imx/Makefile b/sound/soc/sof/imx/Makefile index 798b43a415bf..be0bf0736dfa 100644 --- a/sound/soc/sof/imx/Makefile +++ b/sound/soc/sof/imx/Makefile @@ -1,9 +1,9 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) -snd-sof-imx8-objs := imx8.o -snd-sof-imx8m-objs := imx8m.o -snd-sof-imx8ulp-objs := imx8ulp.o +snd-sof-imx8-y := imx8.o +snd-sof-imx8m-y := imx8m.o +snd-sof-imx8ulp-y := imx8ulp.o -snd-sof-imx-common-objs := imx-common.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 |
