From 9c51c6e2752653df57cb8abc2c889f091f786898 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Thu, 12 Feb 2026 23:11:13 -0800 Subject: [PATCH] ptp: Fix typo in PTP TD model Signed-off-by: Alex Forencich --- src/ptp/tb/ptp_td.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ptp/tb/ptp_td.py b/src/ptp/tb/ptp_td.py index 9308a80..8a5f034 100644 --- a/src/ptp/tb/ptp_td.py +++ b/src/ptp/tb/ptp_td.py @@ -108,7 +108,7 @@ class PtpTdSource(Reset): self.ts_fns = int(ts_fns) self.ts_tod_updated = True - def set_ts_tod_64(self, ts): + def set_ts_tod_96(self, ts): ts = int(ts) self.set_ts_tod(ts >> 48, (ts >> 32) & 0x3fffffff, (ts & 0xffff) << 16)