> -----Original Message-----
> From: Intel-wired-lan <[email protected]> On Behalf
> Of Ivan Vecera
> Sent: Friday, January 16, 2026 7:46 PM
> To: [email protected]
> Cc: Eric Dumazet <[email protected]>; Nguyen, Anthony L
> <[email protected]>; Rob Herring <[email protected]>; Leon
> Romanovsky <[email protected]>; Lobakin, Aleksander
> <[email protected]>; [email protected]; Kitszel,
> Przemyslaw <[email protected]>; Kubalewski, Arkadiusz
> <[email protected]>; [email protected];
> Jakub Kicinski <[email protected]>; Paolo Abeni <[email protected]>;
> [email protected]; Conor Dooley <[email protected]>; Jiri
> Pirko <[email protected]>; Richard Cochran <[email protected]>;
> Saravana Kannan <[email protected]>; Prathosh Satish
> <[email protected]>; Vadim Fedorenko
> <[email protected]>; Mark Bloch <[email protected]>; linux-
> [email protected]; Tariq Toukan <[email protected]>; Andrew Lunn
> <[email protected]>; Jonathan Lemon <[email protected]>;
> Krzysztof Kozlowski <[email protected]>; Saeed Mahameed
> <[email protected]>; David S. Miller <[email protected]>
> 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 <[email protected]>
> ---
> 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(struct
> zl3073x_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 <[email protected]>