]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
wifi: iwlwifi: Use system_device_crosststamp::sys_systime
authorThomas Gleixner <tglx@kernel.org>
Fri, 29 May 2026 20:01:09 +0000 (22:01 +0200)
committerThomas Gleixner <tglx@kernel.org>
Thu, 4 Jun 2026 09:04:17 +0000 (11:04 +0200)
sys_systime is an alias for sys_realtime. The latter will be removed so
switch the code over to the new naming scheme.

No functional change.

Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Tested-by: Arthur Kiyanovski <akiyano@amazon.com>
Reviewed-by: David Woodhouse <dwmw@amazon.co.uk>
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
Link: https://patch.msgid.link/20260529195557.946612509@kernel.org
drivers/net/wireless/intel/iwlwifi/mld/ptp.c
drivers/net/wireless/intel/iwlwifi/mvm/ptp.c

index 921b93c9e8369515bc602167696b36c014586f22..f829156d42b30f02bf45f9d968d97c984dd0a7a3 100644 (file)
@@ -271,7 +271,7 @@ iwl_mld_phc_get_crosstimestamp(struct ptp_clock_info *ptp,
 
        /* System monotonic raw time is not used */
        xtstamp->device = ns_to_ktime(gp2_ns);
-       xtstamp->sys_realtime = sys_time;
+       xtstamp->sys_systime = sys_time;
 
        return ret;
 }
index 4c40a5218436fa2e5fdf290aa9a68c987cc661c4..bcd6f7cead2a7b1883db4dd0552148aa67b4a019 100644 (file)
@@ -185,7 +185,7 @@ iwl_mvm_phc_get_crosstimestamp(struct ptp_clock_info *ptp,
 
        /* System monotonic raw time is not used */
        xtstamp->device = (ktime_t)gp2_ns;
-       xtstamp->sys_realtime = sys_time;
+       xtstamp->sys_systime = sys_time;
 
 out:
        mutex_unlock(&mvm->mutex);