diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-05-07 17:55:16 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-05-08 11:39:20 +0900 |
commit | 590d82e6e6284eba3e99d15264779c4369709291 (patch) | |
tree | a633fd4e2efa46e2ae6ed69151139608149b493a /sound/soc/intel/keembay | |
parent | 76560b808b41267cd08a538d2ad536f557c510f3 (diff) | |
download | lwn-590d82e6e6284eba3e99d15264779c4369709291.tar.gz lwn-590d82e6e6284eba3e99d15264779c4369709291.zip |
ASoC: intel: 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-13-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/keembay')
-rw-r--r-- | sound/soc/intel/keembay/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/keembay/Makefile b/sound/soc/intel/keembay/Makefile index 9084e8c63854..3da9a6f9ba2a 100644 --- a/sound/soc/intel/keembay/Makefile +++ b/sound/soc/intel/keembay/Makefile @@ -1,4 +1,4 @@ -snd-soc-kmb_platform-objs := \ +snd-soc-kmb_platform-y := \ kmb_platform.o obj-$(CONFIG_SND_SOC_INTEL_KEEMBAY) += snd-soc-kmb_platform.o |