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/catpt | |
parent | 76560b808b41267cd08a538d2ad536f557c510f3 (diff) |
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/catpt')
-rw-r--r-- | sound/soc/intel/catpt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/catpt/Makefile b/sound/soc/intel/catpt/Makefile index c393a45795da..f5f6a7e956ce 100644 --- a/sound/soc/intel/catpt/Makefile +++ b/sound/soc/intel/catpt/Makefile @@ -1,4 +1,4 @@ -snd-soc-catpt-objs := device.o dsp.o loader.o ipc.o messages.o pcm.o sysfs.o +snd-soc-catpt-y := device.o dsp.o loader.o ipc.o messages.o pcm.o sysfs.o # tell define_trace.h where to find the trace header CFLAGS_device.o := -I$(src) |