From: Daniel Henrique Barboza <danielhb413@gmail.com>
To: BALATON Zoltan <balaton@eik.bme.hu>,
qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Cc: philmd@linaro.org
Subject: Re: [RESEND PATCH v3 3/4] ppc4xx_pci: Add define for ppc4xx-host-bridge type name
Date: Thu, 6 Jul 2023 17:33:39 -0300 [thread overview]
Message-ID: <b0d27bf9-ae13-134f-85df-83378e576339@gmail.com> (raw)
In-Reply-To: <f6e2956b3a09ee481b970ef7873b374c846ba0a8.1688641673.git.balaton@eik.bme.hu>
On 7/6/23 08:16, BALATON Zoltan wrote:
> Add a QOM type name define for ppc4xx-host-bridge in the common header
> and replace direct use of the string name with the constant.
>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
> ---
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
> hw/ppc/ppc440_pcix.c | 3 ++-
> hw/ppc/ppc4xx_pci.c | 4 ++--
> include/hw/ppc/ppc4xx.h | 1 +
> 3 files changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/hw/ppc/ppc440_pcix.c b/hw/ppc/ppc440_pcix.c
> index 54286cfef4..9321ca0abd 100644
> --- a/hw/ppc/ppc440_pcix.c
> +++ b/hw/ppc/ppc440_pcix.c
> @@ -498,7 +498,8 @@ static void ppc440_pcix_realize(DeviceState *dev, Error **errp)
> ppc440_pcix_map_irq, &s->irq, &s->busmem, &s->iomem,
> PCI_DEVFN(0, 0), 1, TYPE_PCI_BUS);
>
> - s->dev = pci_create_simple(h->bus, PCI_DEVFN(0, 0), "ppc4xx-host-bridge");
> + s->dev = pci_create_simple(h->bus, PCI_DEVFN(0, 0),
> + TYPE_PPC4xx_HOST_BRIDGE);
>
> memory_region_init(&s->bm, OBJECT(s), "bm-ppc440-pcix", UINT64_MAX);
> memory_region_add_subregion(&s->bm, 0x0, &s->busmem);
> diff --git a/hw/ppc/ppc4xx_pci.c b/hw/ppc/ppc4xx_pci.c
> index fbdf8266d8..6652119008 100644
> --- a/hw/ppc/ppc4xx_pci.c
> +++ b/hw/ppc/ppc4xx_pci.c
> @@ -333,7 +333,7 @@ static void ppc4xx_pcihost_realize(DeviceState *dev, Error **errp)
> TYPE_PCI_BUS);
> h->bus = b;
>
> - pci_create_simple(b, 0, "ppc4xx-host-bridge");
> + pci_create_simple(b, 0, TYPE_PPC4xx_HOST_BRIDGE);
>
> /* XXX split into 2 memory regions, one for config space, one for regs */
> memory_region_init(&s->container, OBJECT(s), "pci-container", PCI_ALL_SIZE);
> @@ -367,7 +367,7 @@ static void ppc4xx_host_bridge_class_init(ObjectClass *klass, void *data)
> }
>
> static const TypeInfo ppc4xx_host_bridge_info = {
> - .name = "ppc4xx-host-bridge",
> + .name = TYPE_PPC4xx_HOST_BRIDGE,
> .parent = TYPE_PCI_DEVICE,
> .instance_size = sizeof(PCIDevice),
> .class_init = ppc4xx_host_bridge_class_init,
> diff --git a/include/hw/ppc/ppc4xx.h b/include/hw/ppc/ppc4xx.h
> index e053b9751b..766d575e86 100644
> --- a/include/hw/ppc/ppc4xx.h
> +++ b/include/hw/ppc/ppc4xx.h
> @@ -29,6 +29,7 @@
> #include "exec/memory.h"
> #include "hw/sysbus.h"
>
> +#define TYPE_PPC4xx_HOST_BRIDGE "ppc4xx-host-bridge"
> #define TYPE_PPC4xx_PCI_HOST "ppc4xx-pci-host"
> #define TYPE_PPC460EX_PCIE_HOST "ppc460ex-pcie-host"
>
next prev parent reply other threads:[~2023-07-06 20:34 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-06 11:07 [PATCH v3 0/4] PPC440 devices misc clean up BALATON Zoltan
2023-07-03 16:48 ` [PATCH v3 1/4] ppc440_pcix: Stop using system io region for PCI bus BALATON Zoltan
2023-07-06 11:16 ` [RESEND PATCH " BALATON Zoltan
2023-07-03 21:09 ` [PATCH v3 2/4] ppc4xx_pci: Rename QOM type name define BALATON Zoltan
2023-07-06 11:16 ` [RESEND PATCH " BALATON Zoltan
2023-07-06 20:33 ` Daniel Henrique Barboza
2023-07-06 22:42 ` BALATON Zoltan
2023-07-03 21:16 ` [PATCH v3 3/4] ppc4xx_pci: Add define for ppc4xx-host-bridge type name BALATON Zoltan
2023-07-06 11:16 ` [RESEND PATCH " BALATON Zoltan
2023-07-06 20:33 ` Daniel Henrique Barboza [this message]
2023-07-03 21:21 ` [PATCH v3 4/4] ppc440_pcix: Rename QOM type define abd move it to common header BALATON Zoltan
2023-07-06 11:16 ` [RESEND PATCH " BALATON Zoltan
2023-07-06 20:33 ` Daniel Henrique Barboza
2023-07-06 11:16 ` [RESEND PATCH v3 0/4] PPC440 devices misc clean up BALATON Zoltan
2023-07-07 7:19 ` Daniel Henrique Barboza
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=b0d27bf9-ae13-134f-85df-83378e576339@gmail.com \
--to=danielhb413@gmail.com \
--cc=balaton@eik.bme.hu \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@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).