forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ALSA: misc: 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 <[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
17 changed files
with
28 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
snd-atmel-ac97c-objs := ac97c.o | ||
snd-atmel-ac97c-y := ac97c.o | ||
|
||
obj-$(CONFIG_SND_ATMEL_AC97C) += snd-atmel-ac97c.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 |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
# Copyright (c) 2001 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-i2c-objs := i2c.o | ||
snd-cs8427-objs := cs8427.o | ||
snd-tea6330t-objs := tea6330t.o | ||
snd-i2c-y := i2c.o | ||
snd-cs8427-y := cs8427.o | ||
snd-tea6330t-y := tea6330t.o | ||
|
||
obj-$(CONFIG_SND) += other/ | ||
|
||
|
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 |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
# Copyright (c) 2003 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-ak4114-objs := ak4114.o | ||
snd-ak4117-objs := ak4117.o | ||
snd-ak4113-objs := ak4113.o | ||
snd-ak4xxx-adda-objs := ak4xxx-adda.o | ||
snd-pt2258-objs := pt2258.o | ||
snd-ak4114-y := ak4114.o | ||
snd-ak4117-y := ak4117.o | ||
snd-ak4113-y := ak4113.o | ||
snd-ak4xxx-adda-y := ak4xxx-adda.o | ||
snd-pt2258-y := pt2258.o | ||
|
||
# Module Dependency | ||
obj-$(CONFIG_SND_PDAUDIOCF) += snd-ak4117.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
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 |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
# Copyright (c) 2004 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-pdaudiocf-objs := pdaudiocf.o pdaudiocf_core.o pdaudiocf_irq.o pdaudiocf_pcm.o | ||
snd-pdaudiocf-y := pdaudiocf.o pdaudiocf_core.o pdaudiocf_irq.o pdaudiocf_pcm.o | ||
|
||
obj-$(CONFIG_SND_PDAUDIOCF) += snd-pdaudiocf.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 |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
# Copyright (c) 2001 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-vxpocket-objs := vxpocket.o vxp_ops.o vxp_mixer.o | ||
snd-vxpocket-y := vxpocket.o vxp_ops.o vxp_mixer.o | ||
|
||
obj-$(CONFIG_SND_VXPOCKET) += snd-vxpocket.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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Copyright (c) 2001 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-powermac-objs := powermac.o pmac.o awacs.o burgundy.o daca.o tumbler.o keywest.o beep.o | ||
snd-powermac-y := powermac.o pmac.o awacs.o burgundy.o daca.o tumbler.o keywest.o beep.o | ||
|
||
# Toplevel Module Dependency | ||
obj-$(CONFIG_SND_POWERMAC) += snd-powermac.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 |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
# Copyright (c) 2002 by David S. Miller <[email protected]> | ||
# | ||
|
||
snd-sun-amd7930-objs := amd7930.o | ||
snd-sun-cs4231-objs := cs4231.o | ||
snd-sun-dbri-objs := dbri.o | ||
snd-sun-amd7930-y := amd7930.o | ||
snd-sun-cs4231-y := cs4231.o | ||
snd-sun-dbri-y := dbri.o | ||
|
||
obj-$(CONFIG_SND_SUN_AMD7930) += snd-sun-amd7930.o | ||
obj-$(CONFIG_SND_SUN_CS4231) += snd-sun-cs4231.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,6 +1,6 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
# Makefile for SPI drivers | ||
|
||
snd-at73c213-objs := at73c213.o | ||
snd-at73c213-y := at73c213.o | ||
|
||
obj-$(CONFIG_SND_AT73C213) += snd-at73c213.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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Copyright (c) 2001 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-util-mem-objs := util_mem.o | ||
snd-util-mem-y := util_mem.o | ||
|
||
# Toplevel Module Dependency | ||
obj-$(CONFIG_SND_EMU10K1) += snd-util-mem.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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# Copyright (c) 2001 by Jaroslav Kysela <[email protected]> | ||
# | ||
|
||
snd-emux-synth-objs := emux.o emux_synth.o emux_seq.o emux_nrpn.o \ | ||
snd-emux-synth-y := emux.o emux_synth.o emux_seq.o emux_nrpn.o \ | ||
emux_effect.o emux_hwdep.o soundfont.o | ||
snd-emux-synth-$(CONFIG_SND_PROC_FS) += emux_proc.o | ||
ifneq ($(CONFIG_SND_SEQUENCER_OSS),) | ||
|
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-hdmi-lpe-audio-objs += \ | ||
snd-hdmi-lpe-audio-y += \ | ||
intel_hdmi_audio.o | ||
|
||
obj-$(CONFIG_HDMI_LPE_AUDIO) += snd-hdmi-lpe-audio.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