]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
dm: drop CONFIG_DM_DEVICE_REMOVE from uncmd list
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 11 Aug 2015 22:31:52 +0000 (07:31 +0900)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 08:24:17 +0000 (10:24 +0200)
commitef16a4ccb2a0a7787997d132c0d8c677af7dfc57
tree7227ff5c13dbe706da3d38f3ecaa103fc94ca6b3
parent896ce968d0a1a83bf442112a8030233101bc8e1b
dm: drop CONFIG_DM_DEVICE_REMOVE from uncmd list

We do not want to compile the DM remove code for SPL.  Currently,
we undef it in include/config_uncmd_spl.h (for C files) and in
scripts/Makefile.uncmd_spl (for Makefiles).  This is really ugly.

This commit demonstrates how we can deprecate those two files.

Use $(SPL_) for the entry in the Makfile and CONFIG_IS_ENABLED()
in C files.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/core/Makefile
drivers/core/device.c
drivers/core/uclass.c
include/config_uncmd_spl.h
include/dm/device-internal.h
include/dm/uclass-internal.h
scripts/Makefile.uncmd_spl