diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2022-04-04 11:45:00 +0200 |
---|---|---|
committer | Nishanth Menon <nm@ti.com> | 2022-04-15 15:03:20 -0500 |
commit | a6af504184c981efd253f986e6fc54db57b1d39f (patch) | |
tree | fc1b74abbef135ba0fe4d50b8094f32b05a2a3c3 /drivers/reset | |
parent | ba56291e297d28aa6eb82c5c1964fae2d7594746 (diff) | |
download | linux-stable-a6af504184c981efd253f986e6fc54db57b1d39f.tar.gz linux-stable-a6af504184c981efd253f986e6fc54db57b1d39f.tar.bz2 linux-stable-a6af504184c981efd253f986e6fc54db57b1d39f.zip |
reset: ti-sci: Allow building under COMPILE_TEST
Since commit 043cfff99a18 ("firmware: ti_sci: Fix compilation failure
when CONFIG_TI_SCI_PROTOCOL is not defined") it is possible to build
reset-ti-sci under CONFIG_COMPILE_TEST.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Nishanth Menon <nm@ti.com>
Link: https://lore.kernel.org/r/20220404094500.2708816-1-p.zabel@pengutronix.de
Diffstat (limited to 'drivers/reset')
-rw-r--r-- | drivers/reset/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig index b496028b6bfa..d6cb52a1dce7 100644 --- a/drivers/reset/Kconfig +++ b/drivers/reset/Kconfig @@ -240,7 +240,7 @@ config RESET_SUNXI config RESET_TI_SCI tristate "TI System Control Interface (TI-SCI) reset driver" - depends on TI_SCI_PROTOCOL + depends on TI_SCI_PROTOCOL || COMPILE_TEST help This enables the reset driver support over TI System Control Interface available on some new TI's SoCs. If you wish to use reset resources |