[Intel-wired-lan] [RFC PATCH v2 03/10] e10002: remove convert_art_to_tsc()
lakshmi.sowjanya.d at intel.com
lakshmi.sowjanya.d at intel.com
Thu Dec 21 09:32:47 UTC 2023
From: Thomas Gleixner <tglx at 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 <tglx at linutronix.de>
Signed-off-by: Lakshmi Sowjanya D <lakshmi.sowjanya.d at 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
More information about the Intel-wired-lan
mailing list