All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: "Stefano Stabellini" <sstabellini@kernel.org>,
	qemu-devel@nongnu.org, "Laurent Vivier" <laurent@vivier.eu>,
	"open list:X86" <xen-devel@lists.xenproject.org>,
	"Anthony Perard" <anthony.perard@citrix.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 4/8] xen: Remove useless casts
Date: Thu, 05 Jul 2018 07:39:03 +0200	[thread overview]
Message-ID: <87y3eqckco.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20180704153919.12432-5-f4bug@amsat.org> ("Philippe Mathieu-Daudé"'s message of "Wed, 4 Jul 2018 12:39:15 -0300")

Philippe Mathieu-Daudé <f4bug@amsat.org> writes:

> Patch created mechanically by rerunning:
>
>   $  spatch --sp-file scripts/coccinelle/typecast.cocci \
>             --macro-file scripts/cocci-macro-file.h \
>             --dir . --in-place
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  hw/xen/xen_pt_config_init.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/xen/xen_pt_config_init.c b/hw/xen/xen_pt_config_init.c
> index aee31c62bb..55a83333f2 100644
> --- a/hw/xen/xen_pt_config_init.c
> +++ b/hw/xen/xen_pt_config_init.c
> @@ -543,7 +543,7 @@ static int xen_pt_exp_rom_bar_reg_write(XenPCIPassthroughState *s,
>  {
>      XenPTRegInfo *reg = cfg_entry->reg;
>      XenPTRegion *base = NULL;
> -    PCIDevice *d = (PCIDevice *)&s->dev;
> +    PCIDevice *d = &s->dev;
>      uint32_t writable_mask = 0;
>      uint32_t throughable_mask = get_throughable_mask(s, reg, valid_mask);
>      pcibus_t r_size = 0;

Reviewed-by: Markus Armbruster <armbru@redhat.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

WARNING: multiple messages have this Message-ID (diff)
From: Markus Armbruster <armbru@redhat.com>
To: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
Cc: "Laurent Vivier" <laurent@vivier.eu>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	"Anthony Perard" <anthony.perard@citrix.com>,
	"open list:X86" <xen-devel@lists.xenproject.org>,
	"Stefano Stabellini" <sstabellini@kernel.org>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 4/8] xen: Remove useless casts
Date: Thu, 05 Jul 2018 07:39:03 +0200	[thread overview]
Message-ID: <87y3eqckco.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <20180704153919.12432-5-f4bug@amsat.org> ("Philippe Mathieu-Daudé"'s message of "Wed, 4 Jul 2018 12:39:15 -0300")

Philippe Mathieu-Daudé <f4bug@amsat.org> writes:

> Patch created mechanically by rerunning:
>
>   $  spatch --sp-file scripts/coccinelle/typecast.cocci \
>             --macro-file scripts/cocci-macro-file.h \
>             --dir . --in-place
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  hw/xen/xen_pt_config_init.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/xen/xen_pt_config_init.c b/hw/xen/xen_pt_config_init.c
> index aee31c62bb..55a83333f2 100644
> --- a/hw/xen/xen_pt_config_init.c
> +++ b/hw/xen/xen_pt_config_init.c
> @@ -543,7 +543,7 @@ static int xen_pt_exp_rom_bar_reg_write(XenPCIPassthroughState *s,
>  {
>      XenPTRegInfo *reg = cfg_entry->reg;
>      XenPTRegion *base = NULL;
> -    PCIDevice *d = (PCIDevice *)&s->dev;
> +    PCIDevice *d = &s->dev;
>      uint32_t writable_mask = 0;
>      uint32_t throughable_mask = get_throughable_mask(s, reg, valid_mask);
>      pcibus_t r_size = 0;

Reviewed-by: Markus Armbruster <armbru@redhat.com>

  reply	other threads:[~2018-07-05  5:39 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-04 15:39 [Qemu-arm] [PATCH 0/8] Coccinelle cleanups Philippe Mathieu-Daudé
2018-07-04 15:39 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-07-04 15:39 ` Philippe Mathieu-Daudé
2018-07-04 15:39 ` [Qemu-devel] [PATCH 1/8] qobject: Catch another straggler for use of qdict_put_str() Philippe Mathieu-Daudé
2018-07-05  5:38   ` Markus Armbruster
2018-07-04 15:39 ` [Qemu-devel] [PATCH 2/8] error: Remove NULL checks on error_propagate() calls Philippe Mathieu-Daudé
2018-07-05  5:38   ` Markus Armbruster
2018-07-05  8:49   ` David Hildenbrand
2018-07-04 15:39 ` [Qemu-devel] [PATCH 3/8] crypto: Remove useless casts Philippe Mathieu-Daudé
2018-07-04 15:51   ` Daniel P. Berrangé
2018-07-04 16:30     ` Philippe Mathieu-Daudé
2018-07-04 15:39 ` [PATCH 4/8] xen: " Philippe Mathieu-Daudé
2018-07-04 15:39   ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-07-05  5:39   ` Markus Armbruster [this message]
2018-07-05  5:39     ` Markus Armbruster
2018-07-05 10:05   ` Anthony PERARD
2018-07-05 10:05     ` [Qemu-devel] " Anthony PERARD
2018-07-05 10:16   ` Peter Maydell
2018-07-05 10:16     ` Peter Maydell
2018-07-05 15:36     ` Philippe Mathieu-Daudé
2018-07-05 15:36       ` Philippe Mathieu-Daudé
2018-07-04 15:39 ` [Qemu-devel] [PATCH 5/8] tests/bios-tables-test: " Philippe Mathieu-Daudé
2018-07-05  5:39   ` Markus Armbruster
2018-07-04 15:39 ` [Qemu-devel] [PATCH 6/8] ui/vnc: Remove useless parenthesis around DIV_ROUND_UP macro Philippe Mathieu-Daudé
2018-07-05  5:39   ` Markus Armbruster
2018-08-21  5:46   ` Gerd Hoffmann
2018-07-04 15:39 ` [Qemu-devel] [PATCH 7/8] hw/pci-host: " Philippe Mathieu-Daudé
2018-07-05  5:39   ` Markus Armbruster
2018-07-04 15:39 ` [Qemu-devel] [PATCH 8/8] hw/intc/gicv3: " Philippe Mathieu-Daudé
2018-07-04 15:39   ` Philippe Mathieu-Daudé
2018-07-05  8:33 ` [Qemu-trivial] [Qemu-devel] [PATCH 0/8] Coccinelle cleanups Markus Armbruster
2018-07-05  8:33   ` Markus Armbruster
2018-07-05  8:33   ` [Qemu-arm] " Markus Armbruster
2018-07-05  8:33 ` Markus Armbruster
2018-07-05 13:47 ` Michael S. Tsirkin
2018-07-05 13:47 ` [Qemu-arm] " Michael S. Tsirkin
2018-07-05 13:47   ` [Qemu-devel] " Michael S. Tsirkin

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=87y3eqckco.fsf@dusky.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=anthony.perard@citrix.com \
    --cc=f4bug@amsat.org \
    --cc=laurent@vivier.eu \
    --cc=marcandre.lureau@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.