mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
303681f435
Move parts of the code outside of the Skylake driver to help detect the presence of DMICs (which are not supported by the HDaudio legacy driver). No functionality change (except for the removal of useless OR operations), only indentation and checkpatch fixes, making sure that the code compiles without ACPI and fixing an ACPI leak Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
19 lines
567 B
Makefile
19 lines
567 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
snd-hda-core-objs := hda_bus_type.o hdac_bus.o hdac_device.o hdac_sysfs.o \
|
|
hdac_regmap.o hdac_controller.o hdac_stream.o array.o hdmi_chmap.o
|
|
|
|
snd-hda-core-objs += trace.o
|
|
CFLAGS_trace.o := -I$(src)
|
|
|
|
# for sync with i915 gfx driver
|
|
snd-hda-core-$(CONFIG_SND_HDA_COMPONENT) += hdac_component.o
|
|
snd-hda-core-$(CONFIG_SND_HDA_I915) += hdac_i915.o
|
|
|
|
obj-$(CONFIG_SND_HDA_CORE) += snd-hda-core.o
|
|
|
|
#extended hda
|
|
obj-$(CONFIG_SND_HDA_EXT_CORE) += ext/
|
|
|
|
snd-intel-nhlt-objs := intel-nhlt.o
|
|
obj-$(CONFIG_SND_INTEL_NHLT) += snd-intel-nhlt.o
|