From: Thomas Gleixner <t...@linutronix.de>

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 <t...@linutronix.de>
Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjany...@intel.com>
---
 drivers/net/ethernet/intel/e1000e/ptp.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/e1000e/ptp.c 
b/drivers/net/ethernet/intel/e1000e/ptp.c
index 02d871bc112a..9d8be03a9827 100644
--- a/drivers/net/ethernet/intel/e1000e/ptp.c
+++ b/drivers/net/ethernet/intel/e1000e/ptp.c
@@ -124,7 +124,8 @@ static int e1000e_phc_get_syncdevicetime(ktime_t *device,
        sys_cycles = er32(PLTSTMPH);
        sys_cycles <<= 32;
        sys_cycles |= er32(PLTSTMPL);
-       *system = convert_art_to_tsc(sys_cycles);
+       system->cycles = sys_cycles;
+       system->cs_id = CSID_X86_ART;
 
        return 0;
 }
-- 
2.35.3

_______________________________________________
Intel-wired-lan mailing list
Intel-wired-lan@osuosl.org
https://lists.osuosl.org/mailman/listinfo/intel-wired-lan

Reply via email to