forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Takashi Iwai <[email protected]> Reviewed-by: Takashi Sakamoto <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Reviewed-by: Jaroslav Kysela <[email protected]> Link: https://lore.kernel.org/r/[email protected]
- Loading branch information
Showing
9 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-firewire-digi00x-objs := amdtp-dot.o digi00x-stream.o digi00x-proc.o \ | ||
snd-firewire-digi00x-y := amdtp-dot.o digi00x-stream.o digi00x-proc.o \ | ||
digi00x-pcm.o digi00x-hwdep.o \ | ||
digi00x-transaction.o digi00x-midi.o digi00x.o | ||
obj-$(CONFIG_SND_FIREWIRE_DIGI00X) += snd-firewire-digi00x.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-fireface-objs := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \ | ||
snd-fireface-y := ff.o ff-transaction.o ff-midi.o ff-proc.o amdtp-ff.o \ | ||
ff-stream.o ff-pcm.o ff-hwdep.o ff-protocol-former.o \ | ||
ff-protocol-latter.o | ||
obj-$(CONFIG_SND_FIREFACE) += snd-fireface.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-fireworks-objs := fireworks_transaction.o fireworks_command.o \ | ||
snd-fireworks-y := fireworks_transaction.o fireworks_command.o \ | ||
fireworks_stream.o fireworks_proc.o fireworks_midi.o \ | ||
fireworks_pcm.o fireworks_hwdep.o fireworks.o | ||
obj-$(CONFIG_SND_FIREWORKS) += snd-fireworks.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-oxfw-objs := oxfw-command.o oxfw-stream.o oxfw-pcm.o oxfw-proc.o \ | ||
snd-oxfw-y := oxfw-command.o oxfw-stream.o oxfw-pcm.o oxfw-proc.o \ | ||
oxfw-midi.o oxfw-hwdep.o oxfw-spkr.o oxfw-scs1x.o oxfw.o | ||
obj-$(CONFIG_SND_OXFW) += snd-oxfw.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-firewire-tascam-objs := tascam-proc.o amdtp-tascam.o tascam-stream.o \ | ||
snd-firewire-tascam-y := tascam-proc.o amdtp-tascam.o tascam-stream.o \ | ||
tascam-pcm.o tascam-hwdep.o tascam-transaction.o \ | ||
tascam-midi.o tascam.o | ||
obj-$(CONFIG_SND_FIREWIRE_TASCAM) += snd-firewire-tascam.o |