]> Git Repo - J-linux.git/commitdiff
usb: host: xhci-tegra: Switch to use %ptTs
authorAndy Shevchenko <[email protected]>
Tue, 11 May 2021 15:39:58 +0000 (18:39 +0300)
committerPetr Mladek <[email protected]>
Mon, 17 May 2021 10:01:53 +0000 (12:01 +0200)
Use %ptTs instead of open coded variant to print contents
of time64_t type in human readable form.

Cc: Thierry Reding <[email protected]>
Cc: Jonathan Hunter <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Reviewed-by: Petr Mladek <[email protected]>
Acked-by: Greg Kroah-Hartman <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
drivers/usb/host/xhci-tegra.c

index 50bb91b6a4b8d8e4a39ba7e58d010470d5423776..c7387677a26acf597a28ac34c145671cd8574c91 100644 (file)
@@ -917,7 +917,6 @@ static int tegra_xusb_load_firmware(struct tegra_xusb *tegra)
        struct xhci_op_regs __iomem *op;
        unsigned long timeout;
        time64_t timestamp;
-       struct tm time;
        u64 address;
        u32 value;
        int err;
@@ -1014,11 +1013,8 @@ static int tegra_xusb_load_firmware(struct tegra_xusb *tegra)
        }
 
        timestamp = le32_to_cpu(header->fwimg_created_time);
-       time64_to_tm(timestamp, 0, &time);
 
-       dev_info(dev, "Firmware timestamp: %ld-%02d-%02d %02d:%02d:%02d UTC\n",
-                time.tm_year + 1900, time.tm_mon + 1, time.tm_mday,
-                time.tm_hour, time.tm_min, time.tm_sec);
+       dev_info(dev, "Firmware timestamp: %ptTs UTC\n", &timestamp);
 
        return 0;
 }
This page took 0.055844 seconds and 4 git commands to generate.