]> Gentwo Git Trees - linux/.git/commitdiff
net: dsa: sja1105: Switch to use %ptSp
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 13 Nov 2025 14:32:28 +0000 (15:32 +0100)
committerPetr Mladek <pmladek@suse.com>
Wed, 19 Nov 2025 11:26:07 +0000 (12:26 +0100)
Use %ptSp instead of open coded variants to print content of
struct timespec64 in human readable format.

Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Vladimir Oltean <olteanv@gmail.com>
Tested-by: Vladimir Oltean <olteanv@gmail.com>
Link: https://patch.msgid.link/20251113150217.3030010-15-andriy.shevchenko@linux.intel.com
Signed-off-by: Petr Mladek <pmladek@suse.com>
drivers/net/dsa/sja1105/sja1105_tas.c

index d7818710bc02832fb1c70f115c8e50dbb99f4547..d5949d2c3e71b1f70f4bec0198013457cf38bab5 100644 (file)
@@ -775,9 +775,8 @@ static void sja1105_tas_state_machine(struct work_struct *work)
                base_time_ts = ns_to_timespec64(base_time);
                now_ts = ns_to_timespec64(now);
 
-               dev_dbg(ds->dev, "OPER base time %lld.%09ld (now %lld.%09ld)\n",
-                       base_time_ts.tv_sec, base_time_ts.tv_nsec,
-                       now_ts.tv_sec, now_ts.tv_nsec);
+               dev_dbg(ds->dev, "OPER base time %ptSp (now %ptSp)\n",
+                       &base_time_ts, &now_ts);
 
                break;
 
@@ -798,8 +797,7 @@ static void sja1105_tas_state_machine(struct work_struct *work)
                if (now < tas_data->oper_base_time) {
                        /* TAS has not started yet */
                        diff = ns_to_timespec64(tas_data->oper_base_time - now);
-                       dev_dbg(ds->dev, "time to start: [%lld.%09ld]",
-                               diff.tv_sec, diff.tv_nsec);
+                       dev_dbg(ds->dev, "time to start: [%ptSp]", &diff);
                        break;
                }