RE: [Intel-wired-lan] [PATCH net-next v2 04/12] dpll: zl3073x: Associate pin with fwnode handle
From: Loktionov, Aleksandr <hidden>
Date: 2026-01-19 07:49:52
Also in:
intel-wired-lan, linux-devicetree, linux-rdma, lkml
quoted hunk ↗ jump to hunk
-----Original Message----- From: Intel-wired-lan <redacted> On Behalf Of Ivan Vecera Sent: Friday, January 16, 2026 7:46 PM To: netdev@vger.kernel.org Cc: Eric Dumazet <edumazet@google.com>; Nguyen, Anthony L [off-list ref]; Rob Herring [off-list ref]; Leon Romanovsky [off-list ref]; Lobakin, Aleksander [off-list ref]; linux-rdma@vger.kernel.org; Kitszel, Przemyslaw [off-list ref]; Kubalewski, Arkadiusz [off-list ref]; intel-wired-lan@lists.osuosl.org; Jakub Kicinski [off-list ref]; Paolo Abeni [off-list ref]; devicetree@vger.kernel.org; Conor Dooley [off-list ref]; Jiri Pirko [off-list ref]; Richard Cochran [off-list ref]; Saravana Kannan [off-list ref]; Prathosh Satish [off-list ref]; Vadim Fedorenko [off-list ref]; Mark Bloch [off-list ref]; linux- kernel@vger.kernel.org; Tariq Toukan [off-list ref]; Andrew Lunn [off-list ref]; Jonathan Lemon [off-list ref]; Krzysztof Kozlowski [off-list ref]; Saeed Mahameed [off-list ref]; David S. Miller [off-list ref] Subject: [Intel-wired-lan] [PATCH net-next v2 04/12] dpll: zl3073x: Associate pin with fwnode handle Associate the registered DPLL pin with its firmware node by calling dpll_pin_fwnode_set(). This links the created pin object to its corresponding DT/ACPI node in the DPLL core. Consequently, this enables consumer drivers (such as network drivers) to locate and request this specific pin using the fwnode_dpll_pin_find() helper. Signed-off-by: Ivan Vecera <ivecera@redhat.com> --- drivers/dpll/zl3073x/dpll.c | 1 + 1 file changed, 1 insertion(+)diff --git a/drivers/dpll/zl3073x/dpll.c b/drivers/dpll/zl3073x/dpll.c index 9879d85d29af0..d43e2cea24a67 100644 --- a/drivers/dpll/zl3073x/dpll.c +++ b/drivers/dpll/zl3073x/dpll.c@@ -1373,6 +1373,7 @@ zl3073x_dpll_pin_register(structzl3073x_dpll_pin *pin, u32 index) rc = PTR_ERR(pin->dpll_pin); goto err_pin_get; } + dpll_pin_fwnode_set(pin->dpll_pin, props->fwnode); if (zl3073x_dpll_is_input_pin(pin)) ops = &zl3073x_dpll_input_pin_ops; -- 2.52.0
Reviewed-by: Aleksandr Loktionov <redacted>