~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/soc/sof/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /sound/soc/sof/Makefile (Version linux-6.12-rc7) and /sound/soc/sof/Makefile (Version linux-5.12.19)


  1 # SPDX-License-Identifier: (GPL-2.0-only OR BS      1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
  2                                                     2 
  3 snd-sof-y := core.o ops.o loader.o ipc.o pcm.o !!   3 snd-sof-objs := core.o ops.o loader.o ipc.o pcm.o pm.o debug.o topology.o\
  4                 control.o trace.o iomem-utils. !!   4                 control.o trace.o utils.o sof-audio.o
  5                 fw-file-profile.o              !!   5 snd-sof-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += probe.o compress.o
  6                                                !!   6 
  7 # IPC implementations                          !!   7 snd-sof-pci-objs := sof-pci-dev.o
  8 ifneq ($(CONFIG_SND_SOC_SOF_IPC3),)            !!   8 snd-sof-acpi-objs := sof-acpi-dev.o
  9 snd-sof-y +=    ipc3.o ipc3-loader.o ipc3-topo !!   9 snd-sof-of-objs := sof-of-dev.o
 10                 ipc3-dtrace.o                  << 
 11 endif                                          << 
 12 ifneq ($(CONFIG_SND_SOC_SOF_IPC4),)            << 
 13 snd-sof-y += ipc4.o ipc4-loader.o ipc4-topolog << 
 14                 ipc4-mtrace.o ipc4-telemetry.o << 
 15 endif                                          << 
 16                                                << 
 17 # SOF client support                           << 
 18 ifneq ($(CONFIG_SND_SOC_SOF_CLIENT),)          << 
 19 snd-sof-y += sof-client.o                      << 
 20 endif                                          << 
 21                                                << 
 22 snd-sof-$(CONFIG_SND_SOC_SOF_COMPRESS) += comp << 
 23                                                << 
 24 snd-sof-pci-y := sof-pci-dev.o                 << 
 25 snd-sof-acpi-y := sof-acpi-dev.o               << 
 26 snd-sof-of-y := sof-of-dev.o                   << 
 27                                                << 
 28 snd-sof-ipc-flood-test-y := sof-client-ipc-flo << 
 29 snd-sof-ipc-msg-injector-y := sof-client-ipc-m << 
 30 snd-sof-ipc-kernel-injector-y := sof-client-ip << 
 31 snd-sof-probes-y := sof-client-probes.o        << 
 32 ifneq ($(CONFIG_SND_SOC_SOF_IPC3),)            << 
 33 snd-sof-probes-y += sof-client-probes-ipc3.o   << 
 34 endif                                          << 
 35 ifneq ($(CONFIG_SND_SOC_SOF_IPC4),)            << 
 36 snd-sof-probes-y += sof-client-probes-ipc4.o   << 
 37 endif                                          << 
 38                                                    10 
 39 snd-sof-nocodec-y := nocodec.o                 !!  11 snd-sof-nocodec-objs := nocodec.o
 40                                                << 
 41 snd-sof-utils-y := sof-utils.o                 << 
 42                                                    12 
 43 obj-$(CONFIG_SND_SOC_SOF) += snd-sof.o             13 obj-$(CONFIG_SND_SOC_SOF) += snd-sof.o
 44 obj-$(CONFIG_SND_SOC_SOF_NOCODEC) += snd-sof-n     14 obj-$(CONFIG_SND_SOC_SOF_NOCODEC) += snd-sof-nocodec.o
 45                                                    15 
 46 obj-$(CONFIG_SND_SOC_SOF) += snd-sof-utils.o   << 
 47                                                    16 
 48 obj-$(CONFIG_SND_SOC_SOF_ACPI_DEV) += snd-sof-     17 obj-$(CONFIG_SND_SOC_SOF_ACPI_DEV) += snd-sof-acpi.o
 49 obj-$(CONFIG_SND_SOC_SOF_OF_DEV) += snd-sof-of !!  18 obj-$(CONFIG_SND_SOC_SOF_OF) += snd-sof-of.o
 50 obj-$(CONFIG_SND_SOC_SOF_PCI_DEV) += snd-sof-p     19 obj-$(CONFIG_SND_SOC_SOF_PCI_DEV) += snd-sof-pci.o
 51                                                    20 
 52 obj-$(CONFIG_SND_SOC_SOF_DEBUG_IPC_FLOOD_TEST) << 
 53 obj-$(CONFIG_SND_SOC_SOF_DEBUG_IPC_MSG_INJECTO << 
 54 obj-$(CONFIG_SND_SOC_SOF_DEBUG_IPC_KERNEL_INJE << 
 55 obj-$(CONFIG_SND_SOC_SOF_DEBUG_PROBES) += snd- << 
 56                                                << 
 57 obj-$(CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL) += in     21 obj-$(CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL) += intel/
 58 obj-$(CONFIG_SND_SOC_SOF_IMX_TOPLEVEL) += imx/     22 obj-$(CONFIG_SND_SOC_SOF_IMX_TOPLEVEL) += imx/
 59 obj-$(CONFIG_SND_SOC_SOF_AMD_TOPLEVEL) += amd/ << 
 60 obj-$(CONFIG_SND_SOC_SOF_XTENSA) += xtensa/        23 obj-$(CONFIG_SND_SOC_SOF_XTENSA) += xtensa/
 61 obj-$(CONFIG_SND_SOC_SOF_MTK_TOPLEVEL) += medi << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php