hw/net: Declare link using static DEFINE_PROP_LINK() macro
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>
This commit is contained in:
parent
8802881e4d
commit
4f472537fa
@ -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 = {
|
||||
@ -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(),
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user