OSDN Git Service

m68k/mac: Switch to use %ptR
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 4 Dec 2018 21:23:29 +0000 (23:23 +0200)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Mon, 10 Dec 2018 21:40:16 +0000 (22:40 +0100)
Use %ptR instead of open coded variant to print content of
struct rtc_time in human readable format.

Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: linux-m68k <linux-m68k@lists.linux-m68k.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
arch/m68k/mac/misc.c

index ebb3b6d..71c4735 100644 (file)
@@ -605,13 +605,9 @@ int mac_hwclk(int op, struct rtc_time *t)
                unmktime(now, 0,
                         &t->tm_year, &t->tm_mon, &t->tm_mday,
                         &t->tm_hour, &t->tm_min, &t->tm_sec);
-               pr_debug("%s: read %04d-%02d-%-2d %02d:%02d:%02d\n",
-                        __func__, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
-                        t->tm_hour, t->tm_min, t->tm_sec);
+               pr_debug("%s: read %ptR\n", __func__, t);
        } else { /* write */
-               pr_debug("%s: tried to write %04d-%02d-%-2d %02d:%02d:%02d\n",
-                        __func__, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday,
-                        t->tm_hour, t->tm_min, t->tm_sec);
+               pr_debug("%s: tried to write %ptR\n", __func__, t);
 
                switch (macintosh_config->adb_type) {
                case MAC_ADB_IOP: