[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/4] hw/ppc/e500.c: Avoid hardcoding parent device in create_devt
From: |
Bernhard Beschow |
Subject: |
[PATCH 3/4] hw/ppc/e500.c: Avoid hardcoding parent device in create_devtree_etsec() |
Date: |
Wed, 25 Jan 2023 14:00:23 +0100 |
The "platform" node is available through data->node, so use that instead
of making assumptions about the parent device.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
---
hw/ppc/e500.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index 48288c0b41..e3b29d1d97 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -241,7 +241,7 @@ static int create_devtree_etsec(SysBusDevice *sbdev,
PlatformDevtreeData *data)
int irq0 = platform_bus_get_irqn(pbus, sbdev, 0);
int irq1 = platform_bus_get_irqn(pbus, sbdev, 1);
int irq2 = platform_bus_get_irqn(pbus, sbdev, 2);
- gchar *node = g_strdup_printf("/platform/ethernet@%"PRIx64, mmio0);
+ gchar *node = g_strdup_printf("%s/ethernet@%"PRIx64, data->node, mmio0);
gchar *group = g_strdup_printf("%s/queue-group", node);
void *fdt = data->fdt;
--
2.39.1
- [PATCH 0/4] E500 cleanups and enhancements, Bernhard Beschow, 2023/01/25
- [PATCH 3/4] hw/ppc/e500.c: Avoid hardcoding parent device in create_devtree_etsec(),
Bernhard Beschow <=
- [PATCH 4/4] hw/ppc/e500.c: Attach eSDHC unimplemented region to ccsr_addr_space, Bernhard Beschow, 2023/01/25
- [PATCH 1/4] hw/ppc: Set machine->fdt in e500 machines, Bernhard Beschow, 2023/01/25
- [PATCH 2/4] hw/ppc/e500{, plat}: Drop redundant checks for presence of platform bus, Bernhard Beschow, 2023/01/25
- Re: [PATCH 0/4] E500 cleanups and enhancements, Daniel Henrique Barboza, 2023/01/28