diff options
| author | Tom Rini <[email protected]> | 2026-03-23 08:32:02 -0600 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2026-05-09 00:24:53 +0200 |
| commit | 93f96c7d8da78f652f2b5142390f47eb872438f7 (patch) | |
| tree | 7a14429c9572f7c01b3b383b57b4eece9413fc38 | |
| parent | ebe2af6cd8a623140ae7a87470e808959b186dd6 (diff) | |
reset: Correct dependencies for RESET_RZG2L_USBPHY_CTRL
As exposed by "make randconfig", we have an issue with the dependencies
for RESET_RZG2L_USBPHY_CTRL. As this functionally depends on
REGULATOR_RZG2L_USBPHY, express this dependency directly in Kconfig as
well.
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
| -rw-r--r-- | drivers/reset/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig index 66911199c8b..ebf484d9df4 100644 --- a/drivers/reset/Kconfig +++ b/drivers/reset/Kconfig @@ -239,8 +239,7 @@ config RESET_AT91 config RESET_RZG2L_USBPHY_CTRL bool "Enable support for Renesas RZ/G2L USB 2.0 PHY control" - depends on DM_RESET - select REGULATOR_RZG2L_USBPHY + depends on DM_RESET && REGULATOR_RZG2L_USBPHY help Enable support for controlling USB 2.0 PHY resets on the Renesas RZ/G2L SoC. This is required for USB 2.0 functionality to work on this |
