~ [ 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-6.1.116)


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

~ [ 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