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: [PATCH v2] ppc/pegasos2: Improve readability of VIA south bridge creation
Date: Sat, 21 Jan 2023 09:20:03 -0300 [thread overview]
Message-ID: <55d7ba20-a9d6-1a65-ad9c-c67cca27f714@gmail.com> (raw)
In-Reply-To: <20230118164512.1BCFB745706@zero.eik.bme.hu>
Queued in gitlab.com/danielhb/qemu/tree/ppc-next. Thanks,
Daniel
On 1/18/23 13:45, BALATON Zoltan wrote:
> Slightly improve readability of creating the south bridge by changing
> type of a local variable to avoid some casts within function arguments
> which makes some lines shorter and easier to read.
>
> Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> v2: Fixed typos in commit message
>
> hw/ppc/pegasos2.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/hw/ppc/pegasos2.c b/hw/ppc/pegasos2.c
> index f46d4bf51d..1a13632ba6 100644
> --- a/hw/ppc/pegasos2.c
> +++ b/hw/ppc/pegasos2.c
> @@ -102,7 +102,8 @@ static void pegasos2_init(MachineState *machine)
> CPUPPCState *env;
> MemoryRegion *rom = g_new(MemoryRegion, 1);
> PCIBus *pci_bus;
> - PCIDevice *dev, *via;
> + Object *via;
> + PCIDevice *dev;
> I2CBus *i2c_bus;
> const char *fwname = machine->firmware ?: PROM_FILENAME;
> char *filename;
> @@ -159,19 +160,18 @@ static void pegasos2_init(MachineState *machine)
> pci_bus = mv64361_get_pci_bus(pm->mv, 1);
>
> /* VIA VT8231 South Bridge (multifunction PCI device) */
> - via = pci_create_simple_multifunction(pci_bus, PCI_DEVFN(12, 0), true,
> - TYPE_VT8231_ISA);
> + via = OBJECT(pci_create_simple_multifunction(pci_bus, PCI_DEVFN(12, 0),
> + true, TYPE_VT8231_ISA));
> object_property_add_alias(OBJECT(machine), "rtc-time",
> - object_resolve_path_component(OBJECT(via),
> - "rtc"),
> + object_resolve_path_component(via, "rtc"),
> "date");
> qdev_connect_gpio_out(DEVICE(via), 0,
> qdev_get_gpio_in_named(pm->mv, "gpp", 31));
>
> - dev = PCI_DEVICE(object_resolve_path_component(OBJECT(via), "ide"));
> + dev = PCI_DEVICE(object_resolve_path_component(via, "ide"));
> pci_ide_create_devs(dev);
>
> - dev = PCI_DEVICE(object_resolve_path_component(OBJECT(via), "pm"));
> + dev = PCI_DEVICE(object_resolve_path_component(via, "pm"));
> i2c_bus = I2C_BUS(qdev_get_child_bus(DEVICE(dev), "i2c"));
> spd_data = spd_data_generate(DDR, machine->ram_size);
> smbus_eeprom_init_one(i2c_bus, 0x57, spd_data);
prev parent reply other threads:[~2023-01-21 12:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-18 16:45 [PATCH v2] ppc/pegasos2: Improve readability of VIA south bridge creation BALATON Zoltan
2023-01-21 12:20 ` Daniel Henrique Barboza [this message]
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=55d7ba20-a9d6-1a65-ad9c-c67cca27f714@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).