mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	The i2s code is in fact Samsung-specific, but there might be other implementation. Move this code into its own file. This makes it slightly more obviously how to adjust the code to support another SoC, when someone takes this task on. Also drop non-FDT support, since it isn't used on Exynos 5. Tested-by: Che-Liang Chiou <clchiou@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			14 lines
		
	
	
		
			354 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			354 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Copyright (C) 2012 Samsung Electronics
 | |
| # R. Chandrasekar <rcsekar@samsung.com>
 | |
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-$(CONFIG_SOUND)	+= sound.o
 | |
| obj-$(CONFIG_I2S)	+= sound-i2s.o
 | |
| obj-$(CONFIG_I2S_SAMSUNG)	+= samsung-i2s.o
 | |
| obj-$(CONFIG_SOUND_SANDBOX)	+= sandbox.o
 | |
| obj-$(CONFIG_SOUND_WM8994)	+= wm8994.o
 | |
| obj-$(CONFIG_SOUND_MAX98095)	+= max98095.o
 |