Skip to content

Commit f5c4c2c

Browse files
committed
dpll: zl3073x: Fix output pin registration
jira KERNEL-318 Rebuild_History Non-Buildable kernel-6.12.0-124.20.1.el10_1 commit-author Ivan Vecera <ivecera@redhat.com> commit 40c17a0 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> (cherry picked from commit 40c17a0) Signed-off-by: Jonathan Maple <jmaple@ciq.com>
1 parent 388d037 commit f5c4c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/dpll/zl3073x/dpll.c

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

18511851
is_diff = zl3073x_out_is_diff(zldev, out);
1852-
is_enabled = zl3073x_out_is_enabled(zldev, out);
1852+
is_enabled = zl3073x_output_pin_is_enabled(zldev, index);
18531853
}
18541854

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

0 commit comments

Comments
 (0)