Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: aoa: 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>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20240507135513.14919-9-tiwai@suse.de

+7 -7
+3 -3
sound/aoa/codecs/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - snd-aoa-codec-onyx-objs := onyx.o 3 - snd-aoa-codec-tas-objs := tas.o 4 - snd-aoa-codec-toonie-objs := toonie.o 2 + snd-aoa-codec-onyx-y := onyx.o 3 + snd-aoa-codec-tas-y := tas.o 4 + snd-aoa-codec-toonie-y := toonie.o 5 5 6 6 obj-$(CONFIG_SND_AOA_ONYX) += snd-aoa-codec-onyx.o 7 7 obj-$(CONFIG_SND_AOA_TAS) += snd-aoa-codec-tas.o
+1 -1
sound/aoa/core/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 obj-$(CONFIG_SND_AOA) += snd-aoa.o 3 - snd-aoa-objs := core.o \ 3 + snd-aoa-y := core.o \ 4 4 alsa.o \ 5 5 gpio-pmf.o \ 6 6 gpio-feature.o
+1 -1
sound/aoa/fabrics/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-aoa-fabric-layout-objs += layout.o 2 + snd-aoa-fabric-layout-y += layout.o 3 3 4 4 obj-$(CONFIG_SND_AOA_FABRIC_LAYOUT) += snd-aoa-fabric-layout.o
+1 -1
sound/aoa/soundbus/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 obj-$(CONFIG_SND_AOA_SOUNDBUS) += snd-aoa-soundbus.o 3 - snd-aoa-soundbus-objs := core.o sysfs.o 3 + snd-aoa-soundbus-y := core.o sysfs.o 4 4 obj-$(CONFIG_SND_AOA_SOUNDBUS_I2S) += i2sbus/
+1 -1
sound/aoa/soundbus/i2sbus/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 obj-$(CONFIG_SND_AOA_SOUNDBUS_I2S) += snd-aoa-i2sbus.o 3 - snd-aoa-i2sbus-objs := core.o pcm.o control.o 3 + snd-aoa-i2sbus-y := core.o pcm.o control.o