diff options
author | Simon Glass <sjg@chromium.org> | 2018-12-10 10:37:33 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-12-13 16:32:49 -0700 |
commit | ce6d99a056ebc9ad329521ca3660f6cb298a7666 (patch) | |
tree | e297e74248dba6d54656e7899a4bd0e134c1dd9d /test/dm/Makefile | |
parent | 45863db5a97360b6843a0488621342819e9a6e62 (diff) | |
download | u-boot-ce6d99a056ebc9ad329521ca3660f6cb298a7666.tar.gz |
dm: sound: Create a uclass for audio codecs
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>
Diffstat (limited to 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index 2c9081e4dd..ef450b7ed8 100644 --- a/test/dm/Makefile +++ b/test/dm/Makefile @@ -13,6 +13,7 @@ obj-$(CONFIG_UT_DM) += test-uclass.o # subsystem you must add sandbox tests here. obj-$(CONFIG_UT_DM) += core.o ifneq ($(CONFIG_SANDBOX),) +obj-$(CONFIG_DM_SOUND) += audio.o obj-$(CONFIG_BLK) += blk.o obj-$(CONFIG_BOARD) += board.o obj-$(CONFIG_CLK) += clk.o |