summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlx5/core/dpll.c
diff options
context:
space:
mode:
authorJiri Pirko <jiri@nvidia.com>2024-01-30 13:08:30 +0100
committerPaolo Abeni <pabeni@redhat.com>2024-02-01 15:39:44 +0100
commite2ca9e75849e63eab6544549b6888595997e8153 (patch)
treeeac6f96bd7b363da6717b2ed7e8bdcc94947b881 /drivers/net/ethernet/mellanox/mlx5/core/dpll.c
parentcf4f0f1e1c465da7c1f6bc89c3ff50bf42f0ab02 (diff)
downloadlinux-stable-e2ca9e75849e63eab6544549b6888595997e8153.tar.gz
linux-stable-e2ca9e75849e63eab6544549b6888595997e8153.tar.bz2
linux-stable-e2ca9e75849e63eab6544549b6888595997e8153.zip
dpll: extend lock_status_get() op by status error and expose to user
Pass additional argunent status_error over lock_status_get() so drivers can fill it up. In case they do, expose the value over previously introduced attribute to user. Do it only in case the current lock_status is either "unlocked" or "holdover". Signed-off-by: Jiri Pirko <jiri@nvidia.com> Acked-by: Vadim Fedorenko <vadim.fedorenko@linux.dev> Reviewed-by: Simon Horman <horms@kernel.org> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx5/core/dpll.c')
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/dpll.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/dpll.c b/drivers/net/ethernet/mellanox/mlx5/core/dpll.c
index 18fed2b34fb1..07f43d5c90c6 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/dpll.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/dpll.c
@@ -118,10 +118,11 @@ mlx5_dpll_pin_ffo_get(struct mlx5_dpll_synce_status *synce_status,
return 0;
}
-static int mlx5_dpll_device_lock_status_get(const struct dpll_device *dpll,
- void *priv,
- enum dpll_lock_status *status,
- struct netlink_ext_ack *extack)
+static int
+mlx5_dpll_device_lock_status_get(const struct dpll_device *dpll, void *priv,
+ enum dpll_lock_status *status,
+ enum dpll_lock_status_error *status_error,
+ struct netlink_ext_ack *extack)
{
struct mlx5_dpll_synce_status synce_status;
struct mlx5_dpll *mdpll = priv;