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


  1 # SPDX-License-Identifier: GPL-2.0                
  2 snd-soc-core-y := soc-core.o soc-dapm.o soc-ja    
  3 snd-soc-core-y += soc-pcm.o soc-devres.o soc-o    
  4 snd-soc-core-$(CONFIG_SND_SOC_COMPRESS) += soc    
  5                                                   
  6 ifneq ($(CONFIG_SND_SOC_TOPOLOGY),)               
  7 snd-soc-core-y += 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                                             
 23                                                   
 24 ifneq ($(CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM)    
 25 snd-soc-core-y += soc-generic-dmaengine-pcm.o     
 26 endif                                             
 27                                                   
 28 ifneq ($(CONFIG_SND_SOC_AC97_BUS),)               
 29 snd-soc-core-y += soc-ac97.o                      
 30 endif                                             
 31                                                   
 32 ifneq ($(CONFIG_SND_SOC_ACPI),)                   
 33 snd-soc-acpi-y := soc-acpi.o                      
 34 endif                                             
 35                                                   
 36 obj-$(CONFIG_SND_SOC_ACPI) += snd-soc-acpi.o      
 37                                                   
 38 obj-$(CONFIG_SND_SOC)   += snd-soc-core.o         
 39 obj-$(CONFIG_SND_SOC)   += codecs/                
 40 obj-$(CONFIG_SND_SOC)   += generic/               
 41 obj-$(CONFIG_SND_SOC)   += apple/                 
 42 obj-$(CONFIG_SND_SOC)   += adi/                   
 43 obj-$(CONFIG_SND_SOC)   += amd/                   
 44 obj-$(CONFIG_SND_SOC)   += atmel/                 
 45 obj-$(CONFIG_SND_SOC)   += au1x/                  
 46 obj-$(CONFIG_SND_SOC)   += bcm/                   
 47 obj-$(CONFIG_SND_SOC)   += cirrus/                
 48 obj-$(CONFIG_SND_SOC)   += dwc/                   
 49 obj-$(CONFIG_SND_SOC)   += fsl/                   
 50 obj-$(CONFIG_SND_SOC)   += google/                
 51 obj-$(CONFIG_SND_SOC)   += hisilicon/             
 52 obj-$(CONFIG_SND_SOC)   += jz4740/                
 53 obj-$(CONFIG_SND_SOC)   += loongson/              
 54 obj-$(CONFIG_SND_SOC)   += img/                   
 55 obj-$(CONFIG_SND_SOC)   += intel/                 
 56 obj-$(CONFIG_SND_SOC)   += mediatek/              
 57 obj-$(CONFIG_SND_SOC)   += meson/                 
 58 obj-$(CONFIG_SND_SOC)   += mxs/                   
 59 obj-$(CONFIG_SND_SOC)   += kirkwood/              
 60 obj-$(CONFIG_SND_SOC)   += pxa/                   
 61 obj-$(CONFIG_SND_SOC)   += qcom/                  
 62 obj-$(CONFIG_SND_SOC)   += rockchip/              
 63 obj-$(CONFIG_SND_SOC)   += samsung/               
 64 obj-$(CONFIG_SND_SOC)   += sh/                    
 65 obj-$(CONFIG_SND_SOC)   += sof/                   
 66 obj-$(CONFIG_SND_SOC)   += spear/                 
 67 obj-$(CONFIG_SND_SOC)   += sprd/                  
 68 obj-$(CONFIG_SND_SOC)   += starfive/              
 69 obj-$(CONFIG_SND_SOC)   += sti/                   
 70 obj-$(CONFIG_SND_SOC)   += stm/                   
 71 obj-$(CONFIG_SND_SOC)   += sunxi/                 
 72 obj-$(CONFIG_SND_SOC)   += tegra/                 
 73 obj-$(CONFIG_SND_SOC)   += ti/                    
 74 obj-$(CONFIG_SND_SOC)   += uniphier/              
 75 obj-$(CONFIG_SND_SOC)   += ux500/                 
 76 obj-$(CONFIG_SND_SOC)   += xilinx/                
 77 obj-$(CONFIG_SND_SOC)   += xtensa/                
 78 obj-$(CONFIG_SND_SOC)   += sdw_utils/             
                                                      

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