mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

Since the codec ops for CS420x and CS421x are fairly independent, split the cirrus codec driver into two drivers, snd-hda-codec-cs420x and snd-hda-code-cs421x. Together with the split, convert to the new hda_codec_ops probe. Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://patch.msgid.link/20250709160434.1859-16-tiwai@suse.de
11 lines
383 B
Makefile
11 lines
383 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
subdir-ccflags-y += -I$(src)/../../common
|
|
|
|
snd-hda-codec-cs420x-y := cs420x.o
|
|
snd-hda-codec-cs421x-y := cs421x.o
|
|
snd-hda-codec-cs8409-y := cs8409.o cs8409-tables.o
|
|
|
|
obj-$(CONFIG_SND_HDA_CODEC_CS420X) += snd-hda-codec-cs420x.o
|
|
obj-$(CONFIG_SND_HDA_CODEC_CS421X) += snd-hda-codec-cs421x.o
|
|
obj-$(CONFIG_SND_HDA_CODEC_CS8409) += snd-hda-codec-cs8409.o
|