mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
ce6d99a056
An audio codec provides a way to convert digital data to sound and vice versa. Add a simple uclass which just supports setting the parameters for the codec. Signed-off-by: Simon Glass <sjg@chromium.org>
12 lines
391 B
Makefile
12 lines
391 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# R. Chandrasekar <rcsekar@samsung.com>
|
|
|
|
obj-$(CONFIG_SOUND) += sound.o
|
|
obj-$(CONFIG_DM_SOUND) += codec-uclass.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
|