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

Configure Feed

Select the types of activity you want to include in your feed.

ALSA: firewire: 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.

Cc: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Reviewed-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20240507135513.14919-8-tiwai@suse.de

+10 -10
+2 -2
sound/firewire/Makefile
··· 2 2 # To find a header included by define_trace.h. 3 3 CFLAGS_amdtp-stream.o := -I$(src) 4 4 5 - snd-firewire-lib-objs := lib.o iso-resources.o packets-buffer.o \ 5 + snd-firewire-lib-y := lib.o iso-resources.o packets-buffer.o \ 6 6 fcp.o cmp.o amdtp-stream.o amdtp-am824.o 7 - snd-isight-objs := isight.o 7 + snd-isight-y := isight.o 8 8 9 9 obj-$(CONFIG_SND_FIREWIRE_LIB) += snd-firewire-lib.o 10 10 obj-$(CONFIG_SND_DICE) += dice/
+1 -1
sound/firewire/bebob/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 - snd-bebob-objs := bebob_command.o bebob_stream.o bebob_proc.o bebob_midi.o \ 2 + snd-bebob-y := bebob_command.o bebob_stream.o bebob_proc.o bebob_midi.o \ 3 3 bebob_pcm.o bebob_hwdep.o bebob_terratec.o \ 4 4 bebob_yamaha_terratec.o bebob_focusrite.o bebob_maudio.o \ 5 5 bebob.o
+1 -1
sound/firewire/dice/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-dice-objs := dice-transaction.o dice-stream.o dice-proc.o dice-midi.o \ 2 + snd-dice-y := dice-transaction.o dice-stream.o dice-proc.o dice-midi.o \ 3 3 dice-pcm.o dice-hwdep.o dice.o dice-tcelectronic.o \ 4 4 dice-alesis.o dice-extension.o dice-mytek.o dice-presonus.o \ 5 5 dice-harman.o dice-focusrite.o dice-weiss.o
+1 -1
sound/firewire/digi00x/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-firewire-digi00x-objs := amdtp-dot.o digi00x-stream.o digi00x-proc.o \ 2 + snd-firewire-digi00x-y := amdtp-dot.o digi00x-stream.o digi00x-proc.o \ 3 3 digi00x-pcm.o digi00x-hwdep.o \ 4 4 digi00x-transaction.o digi00x-midi.o digi00x.o 5 5 obj-$(CONFIG_SND_FIREWIRE_DIGI00X) += snd-firewire-digi00x.o
+1 -1
sound/firewire/fireface/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-fireface-objs := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \ 2 + snd-fireface-y := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \ 3 3 ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \ 4 4 ff-protocol-latter.o 5 5 obj-$(CONFIG_SND_FIREFACE) += snd-fireface.o
+1 -1
sound/firewire/fireworks/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-fireworks-objs := fireworks_transaction.o fireworks_command.o \ 2 + snd-fireworks-y := fireworks_transaction.o fireworks_command.o \ 3 3 fireworks_stream.o fireworks_proc.o fireworks_midi.o \ 4 4 fireworks_pcm.o fireworks_hwdep.o fireworks.o 5 5 obj-$(CONFIG_SND_FIREWORKS) += snd-fireworks.o
+1 -1
sound/firewire/motu/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 CFLAGS_amdtp-motu.o := -I$(src) 3 3 4 - snd-firewire-motu-objs := motu.o amdtp-motu.o motu-transaction.o motu-stream.o \ 4 + snd-firewire-motu-y := motu.o amdtp-motu.o motu-transaction.o motu-stream.o \ 5 5 motu-proc.o motu-pcm.o motu-midi.o motu-hwdep.o \ 6 6 motu-protocol-v2.o motu-protocol-v3.o \ 7 7 motu-protocol-v1.o motu-register-dsp-message-parser.o \
+1 -1
sound/firewire/oxfw/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-oxfw-objs := oxfw-command.o oxfw-stream.o oxfw-pcm.o oxfw-proc.o \ 2 + snd-oxfw-y := oxfw-command.o oxfw-stream.o oxfw-pcm.o oxfw-proc.o \ 3 3 oxfw-midi.o oxfw-hwdep.o oxfw-spkr.o oxfw-scs1x.o oxfw.o 4 4 obj-$(CONFIG_SND_OXFW) += snd-oxfw.o
+1 -1
sound/firewire/tascam/Makefile
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 - snd-firewire-tascam-objs := tascam-proc.o amdtp-tascam.o tascam-stream.o \ 2 + snd-firewire-tascam-y := tascam-proc.o amdtp-tascam.o tascam-stream.o \ 3 3 tascam-pcm.o tascam-hwdep.o tascam-transaction.o \ 4 4 tascam-midi.o tascam.o 5 5 obj-$(CONFIG_SND_FIREWIRE_TASCAM) += snd-firewire-tascam.o