Skip to content

Commit 40c17a0

Browse files
ivecerakuba-moo
authored andcommitted
dpll: zl3073x: Fix output pin registration
Currently, the signal format of an associated output is not considered during output pin registration. As a result, the driver registers output pins that are disabled by the signal format configuration. Fix this by calling zl3073x_output_pin_is_enabled() to check whether a given output pin should be registered or not. Fixes: 75a71ec ("dpll: zl3073x: Register DPLL devices and pins") Signed-off-by: Ivan Vecera <ivecera@redhat.com> Link: https://patch.msgid.link/20251027140912.233152-1-ivecera@redhat.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
1 parent d8d2b1f commit 40c17a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/dpll/zl3073x/dpll.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1904,7 +1904,7 @@ zl3073x_dpll_pin_is_registrable(struct zl3073x_dpll *zldpll,
19041904
}
19051905

19061906
is_diff = zl3073x_out_is_diff(zldev, out);
1907-
is_enabled = zl3073x_out_is_enabled(zldev, out);
1907+
is_enabled = zl3073x_output_pin_is_enabled(zldev, index);
19081908
}
19091909

19101910
/* Skip N-pin if the corresponding input/output is differential */

0 commit comments

Comments
 (0)