]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - test/dm/Makefile
karo: fdt: fix panel-dpi support
[karo-tx-uboot.git] / test / dm / Makefile
1 #
2 # Copyright (c) 2013 Google, Inc
3 #
4 # SPDX-License-Identifier:      GPL-2.0+
5 #
6
7 obj-$(CONFIG_CMD_DM) += cmd_dm.o
8 obj-$(CONFIG_UT_DM) += bus.o
9 obj-$(CONFIG_UT_DM) += test-driver.o
10 obj-$(CONFIG_UT_DM) += test-fdt.o
11 obj-$(CONFIG_UT_DM) += test-main.o
12 obj-$(CONFIG_UT_DM) += test-uclass.o
13
14 # Tests for particular subsystems - when enabling driver model for a new
15 # subsystem you must add sandbox tests here.
16 obj-$(CONFIG_UT_DM) += core.o
17 ifneq ($(CONFIG_SANDBOX),)
18 obj-$(CONFIG_CLK) += clk.o
19 obj-$(CONFIG_DM_ETH) += eth.o
20 obj-$(CONFIG_DM_GPIO) += gpio.o
21 obj-$(CONFIG_DM_I2C) += i2c.o
22 obj-$(CONFIG_LED) += led.o
23 obj-$(CONFIG_DM_MMC) += mmc.o
24 obj-$(CONFIG_DM_PCI) += pci.o
25 obj-$(CONFIG_RAM) += ram.o
26 obj-y += regmap.o
27 obj-$(CONFIG_RESET) += reset.o
28 obj-$(CONFIG_DM_RTC) += rtc.o
29 obj-$(CONFIG_DM_SPI_FLASH) += sf.o
30 obj-$(CONFIG_DM_SPI) += spi.o
31 obj-y += syscon.o
32 obj-$(CONFIG_DM_USB) += usb.o
33 obj-$(CONFIG_DM_PMIC) += pmic.o
34 obj-$(CONFIG_DM_REGULATOR) += regulator.o
35 endif