Message ID | 20220404094500.2708816-1-p.zabel@pengutronix.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | reset: ti-sci: allow building under COMPILE_TEST | expand |
Hi Philipp Zabel, On Mon, 4 Apr 2022 11:45:00 +0200, Philipp Zabel wrote: > 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. > > I have applied the following to branch ti-drivers-soc-next on [1]. Thank you! [1/1] reset: ti-sci: allow building under COMPILE_TEST commit: a6af504184c981efd253f986e6fc54db57b1d39f (minor edit: Capitalized "A" in allow in $subject) All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent up the chain during the next merge window (or sooner if it is a relevant bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. [1] git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
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
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> --- drivers/reset/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)