Skip to content

Commit f827d7a

Browse files
tiwaibroonie
authored andcommitted
ASoC: stm: 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]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent aa4a610 commit f827d7a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sound/soc/stm/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# SPDX-License-Identifier: GPL-2.0
22
# SAI
3-
snd-soc-stm32-sai-sub-objs := stm32_sai_sub.o
3+
snd-soc-stm32-sai-sub-y := stm32_sai_sub.o
44
obj-$(CONFIG_SND_SOC_STM32_SAI) += snd-soc-stm32-sai-sub.o
55

6-
snd-soc-stm32-sai-objs := stm32_sai.o
6+
snd-soc-stm32-sai-y := stm32_sai.o
77
obj-$(CONFIG_SND_SOC_STM32_SAI) += snd-soc-stm32-sai.o
88

99
# I2S
10-
snd-soc-stm32-i2s-objs := stm32_i2s.o
10+
snd-soc-stm32-i2s-y := stm32_i2s.o
1111
obj-$(CONFIG_SND_SOC_STM32_I2S) += snd-soc-stm32-i2s.o
1212

1313
# SPDIFRX
14-
snd-soc-stm32-spdifrx-objs := stm32_spdifrx.o
14+
snd-soc-stm32-spdifrx-y := stm32_spdifrx.o
1515
obj-$(CONFIG_SND_SOC_STM32_SPDIFRX) += snd-soc-stm32-spdifrx.o
1616

1717
#DFSDM

0 commit comments

Comments
 (0)