[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAMuHMdVRDa9CoeAKsxh7ka9rdfbKoDDg-PeGosy_ryqYyDXohA@mail.gmail.com>
Date: Thu, 29 Nov 2018 10:08:25 +0100
From: Geert Uytterhoeven <geert@...ux-m68k.org>
To: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc: Alessandro Zummo <a.zummo@...ertech.it>,
Alexandre Belloni <alexandre.belloni@...e-electrons.com>,
linux-rtc@...r.kernel.org, Arnd Bergmann <arnd@...db.de>,
Joe Perches <joe@...ches.com>,
Mark Salyzyn <salyzyn@...roid.com>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Rasmus Villemoes <rasmus.villemoes@...vas.dk>,
Greg KH <gregkh@...uxfoundation.org>
Subject: Re: [PATCH v4 20/21] mk68/mac: Switch to use %ptR
CC linux-m68k
On Wed, Nov 28, 2018 at 8:07 PM Andy Shevchenko
<andriy.shevchenko@...ux.intel.com> wrote:
> Use %ptR instead of open coded variant to print content of
> struct rtc_time in human readable format.
>
> Cc: Geert Uytterhoeven <geert@...ux-m68k.org>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> ---
> arch/m68k/mac/misc.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/arch/m68k/mac/misc.c b/arch/m68k/mac/misc.c
> index ebb3b6d169ea..71c4735a31ee 100644
> --- a/arch/m68k/mac/misc.c
> +++ b/arch/m68k/mac/misc.c
> @@ -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:
> --
> 2.19.2
Powered by blists - more mailing lists