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

TOMOYO Linux Cross Reference
Linux/sound/soc/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/Makefile (Version linux-6.12-rc7) and /sound/soc/Makefile (Version linux-4.10.17)


  1 # SPDX-License-Identifier: GPL-2.0             !!   1 snd-soc-core-objs := soc-core.o soc-dapm.o soc-jack.o soc-cache.o soc-utils.o
  2 snd-soc-core-y := soc-core.o soc-dapm.o soc-ja !!   2 snd-soc-core-objs += soc-pcm.o soc-io.o soc-devres.o soc-ops.o
  3 snd-soc-core-y += soc-pcm.o soc-devres.o soc-o << 
  4 snd-soc-core-$(CONFIG_SND_SOC_COMPRESS) += soc      3 snd-soc-core-$(CONFIG_SND_SOC_COMPRESS) += soc-compress.o
  5                                                     4 
  6 ifneq ($(CONFIG_SND_SOC_TOPOLOGY),)                 5 ifneq ($(CONFIG_SND_SOC_TOPOLOGY),)
  7 snd-soc-core-y += soc-topology.o               !!   6 snd-soc-core-objs += soc-topology.o
  8 endif                                          << 
  9                                                << 
 10 ifneq ($(CONFIG_SND_SOC_TOPOLOGY_KUNIT_TEST),) << 
 11 # snd-soc-test-y := soc-topology-test.o        << 
 12 obj-$(CONFIG_SND_SOC_TOPOLOGY_KUNIT_TEST) += s << 
 13 endif                                          << 
 14                                                << 
 15 ifneq ($(CONFIG_SND_SOC_CARD_KUNIT_TEST),)     << 
 16 obj-$(CONFIG_SND_SOC_CARD_KUNIT_TEST) += soc-c << 
 17 endif                                          << 
 18                                                << 
 19 ifneq ($(CONFIG_SND_SOC_UTILS_KUNIT_TEST),)    << 
 20 # snd-soc-test-y := soc-utils-test.o           << 
 21 obj-$(CONFIG_SND_SOC_UTILS_KUNIT_TEST) += soc- << 
 22 endif                                               7 endif
 23                                                     8 
 24 ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM)      9 ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM),)
 25 snd-soc-core-y += soc-generic-dmaengine-pcm.o  !!  10 snd-soc-core-objs += soc-generic-dmaengine-pcm.o
 26 endif                                              11 endif
 27                                                    12 
 28 ifneq ($(CONFIG_SND_SOC_AC97_BUS),)                13 ifneq ($(CONFIG_SND_SOC_AC97_BUS),)
 29 snd-soc-core-y += soc-ac97.o                   !!  14 snd-soc-core-objs += soc-ac97.o
 30 endif                                          << 
 31                                                << 
 32 ifneq ($(CONFIG_SND_SOC_ACPI),)                << 
 33 snd-soc-acpi-y := soc-acpi.o                   << 
 34 endif                                              15 endif
 35                                                    16 
 36 obj-$(CONFIG_SND_SOC_ACPI) += snd-soc-acpi.o   << 
 37                                                << 
 38 obj-$(CONFIG_SND_SOC)   += snd-soc-core.o          17 obj-$(CONFIG_SND_SOC)   += snd-soc-core.o
 39 obj-$(CONFIG_SND_SOC)   += codecs/                 18 obj-$(CONFIG_SND_SOC)   += codecs/
 40 obj-$(CONFIG_SND_SOC)   += generic/                19 obj-$(CONFIG_SND_SOC)   += generic/
 41 obj-$(CONFIG_SND_SOC)   += apple/              << 
 42 obj-$(CONFIG_SND_SOC)   += adi/                    20 obj-$(CONFIG_SND_SOC)   += adi/
 43 obj-$(CONFIG_SND_SOC)   += amd/                    21 obj-$(CONFIG_SND_SOC)   += amd/
 44 obj-$(CONFIG_SND_SOC)   += atmel/                  22 obj-$(CONFIG_SND_SOC)   += atmel/
 45 obj-$(CONFIG_SND_SOC)   += au1x/                   23 obj-$(CONFIG_SND_SOC)   += au1x/
 46 obj-$(CONFIG_SND_SOC)   += bcm/                    24 obj-$(CONFIG_SND_SOC)   += bcm/
                                                   >>  25 obj-$(CONFIG_SND_SOC)   += blackfin/
 47 obj-$(CONFIG_SND_SOC)   += cirrus/                 26 obj-$(CONFIG_SND_SOC)   += cirrus/
                                                   >>  27 obj-$(CONFIG_SND_SOC)   += davinci/
 48 obj-$(CONFIG_SND_SOC)   += dwc/                    28 obj-$(CONFIG_SND_SOC)   += dwc/
 49 obj-$(CONFIG_SND_SOC)   += fsl/                    29 obj-$(CONFIG_SND_SOC)   += fsl/
 50 obj-$(CONFIG_SND_SOC)   += google/             << 
 51 obj-$(CONFIG_SND_SOC)   += hisilicon/          << 
 52 obj-$(CONFIG_SND_SOC)   += jz4740/                 30 obj-$(CONFIG_SND_SOC)   += jz4740/
 53 obj-$(CONFIG_SND_SOC)   += loongson/           << 
 54 obj-$(CONFIG_SND_SOC)   += img/                    31 obj-$(CONFIG_SND_SOC)   += img/
 55 obj-$(CONFIG_SND_SOC)   += intel/                  32 obj-$(CONFIG_SND_SOC)   += intel/
 56 obj-$(CONFIG_SND_SOC)   += mediatek/               33 obj-$(CONFIG_SND_SOC)   += mediatek/
 57 obj-$(CONFIG_SND_SOC)   += meson/              << 
 58 obj-$(CONFIG_SND_SOC)   += mxs/                    34 obj-$(CONFIG_SND_SOC)   += mxs/
                                                   >>  35 obj-$(CONFIG_SND_SOC)   += nuc900/
                                                   >>  36 obj-$(CONFIG_SND_SOC)   += omap/
 59 obj-$(CONFIG_SND_SOC)   += kirkwood/               37 obj-$(CONFIG_SND_SOC)   += kirkwood/
 60 obj-$(CONFIG_SND_SOC)   += pxa/                    38 obj-$(CONFIG_SND_SOC)   += pxa/
 61 obj-$(CONFIG_SND_SOC)   += qcom/                   39 obj-$(CONFIG_SND_SOC)   += qcom/
 62 obj-$(CONFIG_SND_SOC)   += rockchip/               40 obj-$(CONFIG_SND_SOC)   += rockchip/
 63 obj-$(CONFIG_SND_SOC)   += samsung/                41 obj-$(CONFIG_SND_SOC)   += samsung/
 64 obj-$(CONFIG_SND_SOC)   += sh/                     42 obj-$(CONFIG_SND_SOC)   += sh/
 65 obj-$(CONFIG_SND_SOC)   += sof/                !!  43 obj-$(CONFIG_SND_SOC)   += sirf/
 66 obj-$(CONFIG_SND_SOC)   += spear/                  44 obj-$(CONFIG_SND_SOC)   += spear/
 67 obj-$(CONFIG_SND_SOC)   += sprd/               << 
 68 obj-$(CONFIG_SND_SOC)   += starfive/           << 
 69 obj-$(CONFIG_SND_SOC)   += sti/                    45 obj-$(CONFIG_SND_SOC)   += sti/
 70 obj-$(CONFIG_SND_SOC)   += stm/                << 
 71 obj-$(CONFIG_SND_SOC)   += sunxi/                  46 obj-$(CONFIG_SND_SOC)   += sunxi/
 72 obj-$(CONFIG_SND_SOC)   += tegra/                  47 obj-$(CONFIG_SND_SOC)   += tegra/
 73 obj-$(CONFIG_SND_SOC)   += ti/                 !!  48 obj-$(CONFIG_SND_SOC)   += txx9/
 74 obj-$(CONFIG_SND_SOC)   += uniphier/           << 
 75 obj-$(CONFIG_SND_SOC)   += ux500/                  49 obj-$(CONFIG_SND_SOC)   += ux500/
 76 obj-$(CONFIG_SND_SOC)   += xilinx/             << 
 77 obj-$(CONFIG_SND_SOC)   += xtensa/                 50 obj-$(CONFIG_SND_SOC)   += xtensa/
 78 obj-$(CONFIG_SND_SOC)   += sdw_utils/          !!  51 obj-$(CONFIG_SND_SOC)   += zte/
                                                      

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