mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

Now that all patch_ops usage have been converted to the new hda_codec_ops probe, we can drop patch_ops from the hda_codec, together with the calls of patch_ops callbacks. The hda_codec_ops.free callback is removed as all have been replaced with the new remove callback. Also, correct comments mentioning "patch"; it's replaced with "codec driver". Signed-off-by: Takashi Iwai <tiwai@suse.de> Link: https://patch.msgid.link/20250709160434.1859-25-tiwai@suse.de
9 lines
295 B
Makefile
9 lines
295 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y += core/
|
|
obj-$(CONFIG_SND_HDA) += common/
|
|
obj-$(CONFIG_SND_HDA) += codecs/
|
|
# this must be the last entry after codec drivers;
|
|
# otherwise the codec drivers won't be hooked before the PCI probe
|
|
# when built in kernel
|
|
obj-$(CONFIG_SND_HDA) += controllers/
|