summaryrefslogtreecommitdiff
path: root/drivers/dpll
diff options
context:
space:
mode:
authorIvan Vecera <ivecera@redhat.com>2025-10-27 15:09:12 +0100
committerJakub Kicinski <kuba@kernel.org>2025-10-28 18:54:48 -0700
commit40c17a02de41f12dd713309c7d2546117c577d29 (patch)
tree0df8f286d16d3ee406851ae81de4832553ca013d /drivers/dpll
parentd8d2b1f81530988abe2e2bfaceec1c5d30b9a0b4 (diff)
downloadlinux-40c17a02de41f12dd713309c7d2546117c577d29.tar.gz
linux-40c17a02de41f12dd713309c7d2546117c577d29.tar.bz2
linux-40c17a02de41f12dd713309c7d2546117c577d29.zip
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: 75a71ecc2412 ("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>
Diffstat (limited to 'drivers/dpll')
-rw-r--r--drivers/dpll/zl3073x/dpll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dpll/zl3073x/dpll.c b/drivers/dpll/zl3073x/dpll.c
index 93dc93eec79e..f93f9a458324 100644
--- a/drivers/dpll/zl3073x/dpll.c
+++ b/drivers/dpll/zl3073x/dpll.c
@@ -1904,7 +1904,7 @@ zl3073x_dpll_pin_is_registrable(struct zl3073x_dpll *zldpll,
}
is_diff = zl3073x_out_is_diff(zldev, out);
- is_enabled = zl3073x_out_is_enabled(zldev, out);
+ is_enabled = zl3073x_output_pin_is_enabled(zldev, index);
}
/* Skip N-pin if the corresponding input/output is differential */