1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-03 17:52:07 +02:00

include: reset: Change to use CONFIG_IS_ENABLED(DM_RESET)

Change to use CONFIG_IS_ENABLED(DM_RESET), so this can work in SPL
build (CONFIG_SPL_DM_RESET) and U-boot build (CONFIG_DM_RESET).

Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Ley Foon Tan
2018-06-14 18:45:20 +08:00
committed by Tom Rini
parent bfc6bae8fa
commit d99894dd3a

View File

@@ -77,7 +77,7 @@ struct reset_ctl_bulk {
unsigned int count; unsigned int count;
}; };
#ifdef CONFIG_DM_RESET #if CONFIG_IS_ENABLED(DM_RESET)
/** /**
* reset_get_by_index - Get/request a reset signal by integer index. * reset_get_by_index - Get/request a reset signal by integer index.
* *