diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-05-07 17:55:28 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-08 04:39:30 +0200 |
commit | 9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0 (patch) | |
tree | 08d3c6ba410320054bbe0758cbd481088bede80a /sound/soc/sof/mediatek | |
parent | ASoC: sh: Use *-y instead of *-objs in Makefile (diff) | |
download | linux-9c2f5b6eb8b7da05e13cde60c32e0a8b1f5873b0.tar.xz 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/mediatek')
-rw-r--r-- | sound/soc/sof/mediatek/mt8186/Makefile | 2 | ||||
-rw-r--r-- | sound/soc/sof/mediatek/mt8195/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sof/mediatek/mt8186/Makefile b/sound/soc/sof/mediatek/mt8186/Makefile index c1f5fc4e2495..022f415afac9 100644 --- a/sound/soc/sof/mediatek/mt8186/Makefile +++ b/sound/soc/sof/mediatek/mt8186/Makefile @@ -1,4 +1,4 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) -snd-sof-mt8186-objs := mt8186.o mt8186-clk.o mt8186-loader.o +snd-sof-mt8186-y := mt8186.o mt8186-clk.o mt8186-loader.o obj-$(CONFIG_SND_SOC_SOF_MT8186) += snd-sof-mt8186.o diff --git a/sound/soc/sof/mediatek/mt8195/Makefile b/sound/soc/sof/mediatek/mt8195/Makefile index afc4f21fccc5..f5eeda380b50 100644 --- a/sound/soc/sof/mediatek/mt8195/Makefile +++ b/sound/soc/sof/mediatek/mt8195/Makefile @@ -1,3 +1,3 @@ # SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) -snd-sof-mt8195-objs := mt8195.o mt8195-clk.o mt8195-loader.o +snd-sof-mt8195-y := mt8195.o mt8195-clk.o mt8195-loader.o obj-$(CONFIG_SND_SOC_SOF_MT8195) += snd-sof-mt8195.o |