On Wed, Feb 07 2024 at 11:38, lakshmi sowjanya d. wrote:

> From: Thomas Gleixner <[email protected]>
>
> Remove convert_art_to_tsc() function call, Pass system clock cycles and
> clocksource ID as input to get_device_system_crosststamp().
>
> Signed-off-by: Thomas Gleixner <[email protected]>
> Signed-off-by: Lakshmi Sowjanya D <[email protected]>
> ---
>  drivers/net/ethernet/intel/ice/ice_ptp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/intel/ice/ice_ptp.c 
> b/drivers/net/ethernet/intel/ice/ice_ptp.c
> index 3b6605c8585e..104b3f7a7cfc 100644
> --- a/drivers/net/ethernet/intel/ice/ice_ptp.c
> +++ b/drivers/net/ethernet/intel/ice/ice_ptp.c
> @@ -2101,7 +2101,7 @@ ice_ptp_get_syncdevicetime(ktime_t *device,
>                       hh_ts_lo = rd32(hw, GLHH_ART_TIME_L);
>                       hh_ts_hi = rd32(hw, GLHH_ART_TIME_H);
>                       hh_ts = ((u64)hh_ts_hi << 32) | hh_ts_lo;
> -                     *system = convert_art_ns_to_tsc(hh_ts);
> +                     system->cycles = hh_ts;

Fails to set the ID.

Reply via email to