* [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET
@ 2025-08-02 15:53 Geert Uytterhoeven
2025-08-04 15:32 ` Ivan Vecera
2025-08-05 0:30 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2025-08-02 15:53 UTC (permalink / raw)
To: Ivan Vecera, Prathosh Satish, Jakub Kicinski
Cc: netdev, linux-kernel, Geert Uytterhoeven, kernel test robot
When making ZL3073X invisible, it was overlooked that ZL3073X depends on
NET, while ZL3073X_I2C and ZL3073X_SPI do not, causing:
WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_I2C
WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_SPI
WARNING: unmet direct dependencies detected for ZL3073X
Depends on [n]: NET [=n]
Selected by [y]:
- ZL3073X_I2C [=y] && I2C [=y]
Selected by [y]:
- ZL3073X_SPI [=y] && SPI [=y]
Fix this by adding the missing dependencies to ZL3073X_I2C and
ZL3073X_SPI.
Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202508022110.nTqZ5Ylu-lkp@intel.com/
Closes: https://lore.kernel.org/oe-kbuild-all/202508022351.NHIxPF8j-lkp@intel.com/
Fixes: a4f0866e3dbbf3fe ("dpll: Make ZL3073X invisible")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
drivers/dpll/zl3073x/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/dpll/zl3073x/Kconfig b/drivers/dpll/zl3073x/Kconfig
index 9915f7423dea370c..5bbca14005813134 100644
--- a/drivers/dpll/zl3073x/Kconfig
+++ b/drivers/dpll/zl3073x/Kconfig
@@ -16,7 +16,7 @@ config ZL3073X
config ZL3073X_I2C
tristate "I2C bus implementation for Microchip Azurite devices"
- depends on I2C
+ depends on I2C && NET
select REGMAP_I2C
select ZL3073X
help
@@ -28,7 +28,7 @@ config ZL3073X_I2C
config ZL3073X_SPI
tristate "SPI bus implementation for Microchip Azurite devices"
- depends on SPI
+ depends on NET && SPI
select REGMAP_SPI
select ZL3073X
help
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET
2025-08-02 15:53 [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET Geert Uytterhoeven
@ 2025-08-04 15:32 ` Ivan Vecera
2025-08-05 0:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Ivan Vecera @ 2025-08-04 15:32 UTC (permalink / raw)
To: Geert Uytterhoeven, Prathosh Satish, Jakub Kicinski,
Arnd Bergmann
Cc: netdev, linux-kernel, kernel test robot
On 02. 08. 25 5:53 odp., Geert Uytterhoeven wrote:
> When making ZL3073X invisible, it was overlooked that ZL3073X depends on
> NET, while ZL3073X_I2C and ZL3073X_SPI do not, causing:
>
> WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_I2C
> WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_SPI
> WARNING: unmet direct dependencies detected for ZL3073X
> Depends on [n]: NET [=n]
> Selected by [y]:
> - ZL3073X_I2C [=y] && I2C [=y]
> Selected by [y]:
> - ZL3073X_SPI [=y] && SPI [=y]
>
> Fix this by adding the missing dependencies to ZL3073X_I2C and
> ZL3073X_SPI.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Closes: https://lore.kernel.org/oe-kbuild-all/202508022110.nTqZ5Ylu-lkp@intel.com/
> Closes: https://lore.kernel.org/oe-kbuild-all/202508022351.NHIxPF8j-lkp@intel.com/
> Fixes: a4f0866e3dbbf3fe ("dpll: Make ZL3073X invisible")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> drivers/dpll/zl3073x/Kconfig | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/dpll/zl3073x/Kconfig b/drivers/dpll/zl3073x/Kconfig
> index 9915f7423dea370c..5bbca14005813134 100644
> --- a/drivers/dpll/zl3073x/Kconfig
> +++ b/drivers/dpll/zl3073x/Kconfig
> @@ -16,7 +16,7 @@ config ZL3073X
>
> config ZL3073X_I2C
> tristate "I2C bus implementation for Microchip Azurite devices"
> - depends on I2C
> + depends on I2C && NET
> select REGMAP_I2C
> select ZL3073X
> help
> @@ -28,7 +28,7 @@ config ZL3073X_I2C
>
> config ZL3073X_SPI
> tristate "SPI bus implementation for Microchip Azurite devices"
> - depends on SPI
> + depends on NET && SPI
> select REGMAP_SPI
> select ZL3073X
> help
Acked-by: Ivan Vecera <ivecera@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET
2025-08-02 15:53 [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET Geert Uytterhoeven
2025-08-04 15:32 ` Ivan Vecera
@ 2025-08-05 0:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-08-05 0:30 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: ivecera, Prathosh.Satish, kuba, netdev, linux-kernel, lkp
Hello:
This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Sat, 2 Aug 2025 17:53:02 +0200 you wrote:
> When making ZL3073X invisible, it was overlooked that ZL3073X depends on
> NET, while ZL3073X_I2C and ZL3073X_SPI do not, causing:
>
> WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_I2C
> WARNING: unmet direct dependencies detected for ZL3073X when selected by ZL3073X_SPI
> WARNING: unmet direct dependencies detected for ZL3073X
> Depends on [n]: NET [=n]
> Selected by [y]:
> - ZL3073X_I2C [=y] && I2C [=y]
> Selected by [y]:
> - ZL3073X_SPI [=y] && SPI [=y]
>
> [...]
Here is the summary with links:
- dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET
https://git.kernel.org/netdev/net/c/4eabe4cc0958
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-08-05 0:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-02 15:53 [PATCH] dpll: zl3073x: ZL3073X_I2C and ZL3073X_SPI should depend on NET Geert Uytterhoeven
2025-08-04 15:32 ` Ivan Vecera
2025-08-05 0:30 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).