mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
reset: Rename CONFIG_SPL_RESET_SUPPORT to CONFIG_SPL_DM_RESET
Rename CONFIG_SPL_RESET_SUPPORT to CONFIG_SPL_DM_RESET, so can use CONFIG_IS_ENABLED(DM_RESET) checking in reset.h later. Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e2a1484c3b
commit
bfc6bae8fa
3 changed files with 3 additions and 3 deletions
|
@ -13,7 +13,7 @@ config SPL
|
|||
select SPL_OF_TRANSLATE
|
||||
select SPL_PINCTRL
|
||||
select SPL_REGMAP
|
||||
select SPL_RESET_SUPPORT
|
||||
select SPL_DM_RESET
|
||||
select SPL_SERIAL_SUPPORT
|
||||
select SPL_SYSCON
|
||||
select SPL_DRIVERS_MISC_SUPPORT
|
||||
|
|
|
@ -578,7 +578,7 @@ config SPL_POST_MEM_SUPPORT
|
|||
performed before booting. This enables the drivers in post/drivers
|
||||
as part of an SPL build.
|
||||
|
||||
config SPL_RESET_SUPPORT
|
||||
config SPL_DM_RESET
|
||||
bool "Support reset drivers"
|
||||
depends on SPL
|
||||
help
|
||||
|
|
|
@ -28,7 +28,7 @@ obj-$(CONFIG_ARMADA_XP) += ddr/marvell/axp/
|
|||
obj-$(CONFIG_ALTERA_SDRAM) += ddr/altera/
|
||||
obj-$(CONFIG_SPL_POWER_SUPPORT) += power/ power/pmic/
|
||||
obj-$(CONFIG_SPL_POWER_SUPPORT) += power/regulator/
|
||||
obj-$(CONFIG_SPL_RESET_SUPPORT) += reset/
|
||||
obj-$(CONFIG_SPL_DM_RESET) += reset/
|
||||
obj-$(CONFIG_SPL_MTD_SUPPORT) += mtd/
|
||||
obj-$(CONFIG_SPL_ONENAND_SUPPORT) += mtd/onenand/
|
||||
obj-$(CONFIG_SPL_UBI) += mtd/ubispl/
|
||||
|
|
Loading…
Reference in a new issue