Skip to content

Commit

Permalink
hw/net: Declare link using static DEFINE_PROP_LINK() macro
Browse files Browse the repository at this point in the history
Declare link statically using DEFINE_PROP_LINK().

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Message-Id: <20231017140150.44995-7-philmd@linaro.org>
  • Loading branch information
philmd committed Oct 20, 2023
1 parent 8802881 commit 4f47253
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions hw/net/cadence_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1654,11 +1654,6 @@ static void gem_init(Object *obj)
"enet", sizeof(s->regs));

sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);

object_property_add_link(obj, "dma", TYPE_MEMORY_REGION,
(Object **)&s->dma_mr,
qdev_prop_allow_set_link_before_realize,
OBJ_PROP_LINK_STRONG);
}

static const VMStateDescription vmstate_cadence_gem = {
Expand Down Expand Up @@ -1691,6 +1686,8 @@ static Property gem_properties[] = {
num_type2_screeners, 4),
DEFINE_PROP_UINT16("jumbo-max-len", CadenceGEMState,
jumbo_max_len, 10240),
DEFINE_PROP_LINK("dma", CadenceGEMState, dma_mr,
TYPE_MEMORY_REGION, MemoryRegion *),
DEFINE_PROP_END_OF_LIST(),
};

Expand Down

0 comments on commit 4f47253

Please sign in to comment.