mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
a77bf70978
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>
13 lines
354 B
Makefile
13 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
|