diff options
author | Tom Rini <trini@konsulko.com> | 2018-12-14 14:18:47 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-14 14:18:47 -0500 |
commit | 8fc26fce41592175ae004514e431e68a9dd60671 (patch) | |
tree | 9d4f5d9b057a749742e9dcead3cfa41c4ddae5ea /test/dm/Makefile | |
parent | d117d8f19b0625f88309e47a8a32c2faa384dddc (diff) | |
parent | f987177db9c988142032ed8142a093cce2378a90 (diff) |
Merge tag 'dm-pull-14dec18' of git://git.denx.de/u-boot-dm
Complete conversion of sound to driver model
Diffstat (limited to 'test/dm/Makefile')
-rw-r--r-- | test/dm/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dm/Makefile b/test/dm/Makefile index 2c9081e4dd..6b451060d8 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_SOUND) += audio.o obj-$(CONFIG_BLK) += blk.o obj-$(CONFIG_BOARD) += board.o obj-$(CONFIG_CLK) += clk.o @@ -21,6 +22,7 @@ obj-$(CONFIG_FIRMWARE) += firmware.o obj-$(CONFIG_DM_GPIO) += gpio.o obj-$(CONFIG_DM_HWSPINLOCK) += hwspinlock.o obj-$(CONFIG_DM_I2C) += i2c.o +obj-$(CONFIG_SOUND) += i2s.o obj-$(CONFIG_LED) += led.o obj-$(CONFIG_DM_MAILBOX) += mailbox.o obj-$(CONFIG_DM_MMC) += mmc.o @@ -53,6 +55,7 @@ obj-$(CONFIG_AXI) += axi.o obj-$(CONFIG_MISC) += misc.o obj-$(CONFIG_DM_SERIAL) += serial.o obj-$(CONFIG_CPU) += cpu.o +obj-$(CONFIG_SOUND) += sound.o obj-$(CONFIG_TEE) += tee.o obj-$(CONFIG_VIRTIO_SANDBOX) += virtio.o obj-$(CONFIG_DMA) += dma.o |