diff options
author | Simon Glass <sjg@chromium.org> | 2015-05-23 11:53:57 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-06-04 03:34:48 -0600 |
commit | b14d547245bf47d861b5a9cc5327d98b89e5d0af (patch) | |
tree | a8ad57484280888c3d72520117706604d00602e0 /arch/sandbox/dts/Makefile | |
parent | 52d3bc5d18ea0e3ef78715d9c0c703e458f260a0 (diff) |
sandbox: Compile test device tree when CONFIG_UT_DM is defined
A conflict between the PMIC and unit test work means that the sandbox test
device tree file is no-longer built. Fix this.
Series-to: u-boot
Series-cc: joe, prz
Change-Id: I6616428e05713e5306f848e7dd0a645dedf0934e
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/dts/Makefile')
-rw-r--r-- | arch/sandbox/dts/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/dts/Makefile b/arch/sandbox/dts/Makefile index 562a078c4b..517b555475 100644 --- a/arch/sandbox/dts/Makefile +++ b/arch/sandbox/dts/Makefile @@ -1,5 +1,5 @@ dtb-$(CONFIG_SANDBOX) += sandbox.dtb -dtb-$(CONFIG_DM_TEST) += test.dtb +dtb-$(CONFIG_UT_DM) += test.dtb targets += $(dtb-y) |