mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
f2b25c9bf8
All users of sound are converted to use driver model. Drop the old code and the CONFIG_DM_SOUND option. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
545 B
Makefile
15 lines
545 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_SOUND) += codec-uclass.o
|
|
obj-$(CONFIG_SOUND) += i2s-uclass.o
|
|
obj-$(CONFIG_SOUND) += sound-uclass.o
|
|
obj-$(CONFIG_I2S_SAMSUNG) += samsung-i2s.o
|
|
obj-$(CONFIG_SOUND_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_I2S_SAMSUNG) += samsung_sound.o
|
|
obj-$(CONFIG_SOUND_WM8994) += wm8994.o
|
|
obj-$(CONFIG_SOUND_MAX98090) += max98090.o maxim_codec.o
|
|
obj-$(CONFIG_SOUND_MAX98095) += max98095.o maxim_codec.o
|