qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: Alexander Graf <agraf@suse.de>,
	qemu-devel@nongnu.org, qemu-trivial@nongnu.org,
	qemu-ppc@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 04/11] ppc/pnv: Add trailing '\n' to qemu_log() calls
Date: Thu, 7 Jun 2018 12:16:58 +1000	[thread overview]
Message-ID: <20180607021658.GB3166@umbus.fritz.box> (raw)
In-Reply-To: <20180606152128.449-5-f4bug@amsat.org>

[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]

On Wed, Jun 06, 2018 at 12:21:21PM -0300, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

I'm not really sure what series this was part of, but I've applied it
to ppc-for-3.0 anyway.

Acked-by: David Gibson <david@gibson.dropbear.id.au>

> ---
>  hw/ppc/pnv_core.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/ppc/pnv_core.c b/hw/ppc/pnv_core.c
> index cbb64ad9e7..13ad7d9e04 100644
> --- a/hw/ppc/pnv_core.c
> +++ b/hw/ppc/pnv_core.c
> @@ -97,7 +97,7 @@ static uint64_t pnv_core_xscom_read(void *opaque, hwaddr addr,
>          val = 0x24f000000000000ull;
>          break;
>      default:
> -        qemu_log_mask(LOG_UNIMP, "Warning: reading reg=0x%" HWADDR_PRIx,
> +        qemu_log_mask(LOG_UNIMP, "Warning: reading reg=0x%" HWADDR_PRIx "\n",
>                    addr);
>      }
>  
> @@ -107,7 +107,7 @@ static uint64_t pnv_core_xscom_read(void *opaque, hwaddr addr,
>  static void pnv_core_xscom_write(void *opaque, hwaddr addr, uint64_t val,
>                                   unsigned int width)
>  {
> -    qemu_log_mask(LOG_UNIMP, "Warning: writing to reg=0x%" HWADDR_PRIx,
> +    qemu_log_mask(LOG_UNIMP, "Warning: writing to reg=0x%" HWADDR_PRIx "\n",
>                    addr);
>  }
>  

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2018-06-07  2:17 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-06 15:21 [Qemu-devel] [PATCH 00/11] misc: Add trailing '\n' to qemu_log() calls Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 01/11] hw/sd/milkymist-memcard: Add trailing '\n' to qemu_log() call Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 02/11] hw/digic: Add trailing '\n' to qemu_log() calls Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 03/11] xilinx-dp: Add trailing '\n' to qemu_log() call Philippe Mathieu-Daudé
2018-06-06 15:51   ` Alistair Francis
2018-06-06 15:21 ` [Qemu-devel] [PATCH 04/11] ppc/pnv: Add trailing '\n' to qemu_log() calls Philippe Mathieu-Daudé
2018-06-07  2:16   ` David Gibson [this message]
2018-06-07  2:26     ` Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 05/11] hw/core/register: Add trailing '\n' to qemu_log() call Philippe Mathieu-Daudé
2018-06-06 15:52   ` Alistair Francis
2018-06-06 15:21 ` [Qemu-devel] [PATCH 06/11] hw/mips/boston: Add trailing '\n' to qemu_log() calls Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 07/11] stellaris: " Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 08/11] target/arm: " Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [PATCH 09/11] target/m68k: Add trailing '\n' to qemu_log() call Philippe Mathieu-Daudé
2018-06-06 15:26   ` Laurent Vivier
2018-06-06 15:21 ` [Qemu-devel] [PATCH 10/11] RISC-V: Add trailing '\n' to qemu_log() calls Philippe Mathieu-Daudé
2018-06-06 15:21 ` [Qemu-devel] [RFC PATCH 11/11] target/xtensa: " Philippe Mathieu-Daudé
2018-06-06 16:44   ` Max Filippov
2018-06-06 19:43 ` [Qemu-devel] [PATCH 00/11] misc: " John Snow
2018-06-08 10:54   ` Peter Maydell
2018-06-08 15:07     ` John Snow
2018-06-08 11:54 ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180607021658.GB3166@umbus.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=agraf@suse.de \
    --cc=f4bug@amsat.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).