diff options
| author | Jacob Keller <[email protected]> | 2023-09-08 21:37:14 +0000 |
|---|---|---|
| committer | Tony Nguyen <[email protected]> | 2023-09-18 17:46:11 +0000 |
| commit | 42d40bb21e332151da6fb689bf7d4af8195866ed (patch) | |
| tree | f4071a87e49c3f360a2b8aa76148c1d6566cfedc /drivers/net/ethernet/intel/ice/ice_lib.c | |
| parent | ice: fix pin assignment for E810-T without SMA control (diff) | |
| download | kernel-42d40bb21e332151da6fb689bf7d4af8195866ed.tar.gz kernel-42d40bb21e332151da6fb689bf7d4af8195866ed.zip | |
ice: introduce ice_pf_src_tmr_owned
Add ice_pf_src_tmr_owned() macro to check the function capability bit
indicating if the current function owns the PTP hardware clock. This is
slightly shorter than the more verbose access via
hw.func_caps.ts_func_info.src_tmr_owned. Use this where possible rather
than open coding its equivalent.
Signed-off-by: Jacob Keller <[email protected]>
Signed-off-by: Tony Nguyen <[email protected]>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_lib.c')
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_lib.c b/drivers/net/ethernet/intel/ice/ice_lib.c index 382196486054..1549890a3cbf 100644 --- a/drivers/net/ethernet/intel/ice/ice_lib.c +++ b/drivers/net/ethernet/intel/ice/ice_lib.c @@ -3992,7 +3992,7 @@ void ice_init_feature_support(struct ice_pf *pf) if (ice_is_phy_rclk_present(&pf->hw)) ice_set_feature_support(pf, ICE_F_PHY_RCLK); /* If we don't own the timer - don't enable other caps */ - if (!pf->hw.func_caps.ts_func_info.src_tmr_owned) + if (!ice_pf_src_tmr_owned(pf)) break; if (ice_is_cgu_present(&pf->hw)) ice_set_feature_support(pf, ICE_F_CGU); |
