mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
hw/net: Constify all Property
Reviewed-by: Cédric Le Goater <clg@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@@ -829,7 +829,7 @@ static void allwinner_sun8i_emac_realize(DeviceState *dev, Error **errp)
|
||||
qemu_format_nic_info_str(qemu_get_queue(s->nic), s->conf.macaddr.a);
|
||||
}
|
||||
|
||||
static Property allwinner_sun8i_emac_properties[] = {
|
||||
static const Property allwinner_sun8i_emac_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(AwSun8iEmacState, conf),
|
||||
DEFINE_PROP_UINT8("phy-addr", AwSun8iEmacState, mii_phy_addr, 0),
|
||||
DEFINE_PROP_LINK("dma-memory", AwSun8iEmacState, dma_mr,
|
||||
|
||||
@@ -462,7 +462,7 @@ static void aw_emac_realize(DeviceState *dev, Error **errp)
|
||||
fifo8_create(&s->tx_fifo[1], TX_FIFO_SIZE);
|
||||
}
|
||||
|
||||
static Property aw_emac_properties[] = {
|
||||
static const Property aw_emac_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(AwEmacState, conf),
|
||||
DEFINE_PROP_UINT8("phy-addr", AwEmacState, phy_addr, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
||||
@@ -1784,7 +1784,7 @@ static const VMStateDescription vmstate_cadence_gem = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property gem_properties[] = {
|
||||
static const Property gem_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(CadenceGEMState, conf),
|
||||
DEFINE_PROP_UINT32("revision", CadenceGEMState, revision,
|
||||
GEM_MODID_VALUE),
|
||||
|
||||
@@ -2042,7 +2042,7 @@ static const VMStateDescription vmstate_canfd = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property canfd_core_properties[] = {
|
||||
static const Property canfd_core_properties[] = {
|
||||
DEFINE_PROP_UINT8("rx-fifo0", XlnxVersalCANFDState, cfg.rx0_fifo, 0x40),
|
||||
DEFINE_PROP_UINT8("rx-fifo1", XlnxVersalCANFDState, cfg.rx1_fifo, 0x40),
|
||||
DEFINE_PROP_UINT8("tx-fifo", XlnxVersalCANFDState, cfg.tx_fifo, 0x20),
|
||||
|
||||
@@ -1169,7 +1169,7 @@ static const VMStateDescription vmstate_can = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property xlnx_zynqmp_can_properties[] = {
|
||||
static const Property xlnx_zynqmp_can_properties[] = {
|
||||
DEFINE_PROP_UINT32("ext_clk_freq", XlnxZynqMPCANState, cfg.ext_clk_freq,
|
||||
CAN_DEFAULT_CLOCK),
|
||||
DEFINE_PROP_LINK("canbus", XlnxZynqMPCANState, canbus, TYPE_CAN_BUS,
|
||||
|
||||
+1
-1
@@ -931,7 +931,7 @@ static const VMStateDescription vmstate_dp8393x = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property dp8393x_properties[] = {
|
||||
static const Property dp8393x_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(dp8393xState, conf),
|
||||
DEFINE_PROP_LINK("dma_mr", dp8393xState, dma_mr,
|
||||
TYPE_MEMORY_REGION, MemoryRegion *),
|
||||
|
||||
+1
-1
@@ -1677,7 +1677,7 @@ static void pci_e1000_realize(PCIDevice *pci_dev, Error **errp)
|
||||
e1000_flush_queue_timer, d);
|
||||
}
|
||||
|
||||
static Property e1000_properties[] = {
|
||||
static const Property e1000_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(E1000State, conf),
|
||||
DEFINE_PROP_BIT("extra_mac_registers", E1000State,
|
||||
compat_flags, E1000_FLAG_MAC_BIT, true),
|
||||
|
||||
+1
-1
@@ -661,7 +661,7 @@ static PropertyInfo e1000e_prop_disable_vnet,
|
||||
e1000e_prop_subsys_ven,
|
||||
e1000e_prop_subsys;
|
||||
|
||||
static Property e1000e_properties[] = {
|
||||
static const Property e1000e_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(E1000EState, conf),
|
||||
DEFINE_PROP_SIGNED("disable_vnet_hdr", E1000EState, disable_vnet, false,
|
||||
e1000e_prop_disable_vnet, bool),
|
||||
|
||||
+1
-1
@@ -2058,7 +2058,7 @@ static E100PCIDeviceInfo *eepro100_get_class(EEPRO100State *s)
|
||||
return eepro100_get_class_by_name(object_get_typename(OBJECT(s)));
|
||||
}
|
||||
|
||||
static Property e100_properties[] = {
|
||||
static const Property e100_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(EEPRO100State, conf),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
@@ -414,7 +414,7 @@ static void etsec_instance_init(Object *obj)
|
||||
sysbus_init_irq(sbd, &etsec->err_irq);
|
||||
}
|
||||
|
||||
static Property etsec_properties[] = {
|
||||
static const Property etsec_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(eTSEC, conf),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
+2
-2
@@ -1254,7 +1254,7 @@ static const VMStateDescription vmstate_ftgmac100 = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property ftgmac100_properties[] = {
|
||||
static const Property ftgmac100_properties[] = {
|
||||
DEFINE_PROP_BOOL("aspeed", FTGMAC100State, aspeed, false),
|
||||
DEFINE_NIC_PROPERTIES(FTGMAC100State, conf),
|
||||
DEFINE_PROP_BOOL("dma64", FTGMAC100State, dma64, false),
|
||||
@@ -1415,7 +1415,7 @@ static const VMStateDescription vmstate_aspeed_mii = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property aspeed_mii_properties[] = {
|
||||
static const Property aspeed_mii_properties[] = {
|
||||
DEFINE_PROP_LINK("nic", AspeedMiiState, nic, TYPE_FTGMAC100,
|
||||
FTGMAC100State *),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
||||
+1
-1
@@ -591,7 +591,7 @@ static const VMStateDescription igb_vmstate = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property igb_properties[] = {
|
||||
static const Property igb_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(IGBState, conf),
|
||||
DEFINE_PROP_BOOL("x-pcie-flr-init", IGBState, has_flr, true),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
||||
+1
-1
@@ -1222,7 +1222,7 @@ static void imx_eth_realize(DeviceState *dev, Error **errp)
|
||||
qemu_format_nic_info_str(qemu_get_queue(s->nic), s->conf.macaddr.a);
|
||||
}
|
||||
|
||||
static Property imx_eth_properties[] = {
|
||||
static const Property imx_eth_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(IMXFECState, conf),
|
||||
DEFINE_PROP_UINT32("tx-ring-num", IMXFECState, tx_ring_num, 1),
|
||||
DEFINE_PROP_UINT32("phy-num", IMXFECState, phy_num, 0),
|
||||
|
||||
+1
-1
@@ -1304,7 +1304,7 @@ static void lan9118_realize(DeviceState *dev, Error **errp)
|
||||
ptimer_transaction_commit(s->timer);
|
||||
}
|
||||
|
||||
static Property lan9118_properties[] = {
|
||||
static const Property lan9118_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(lan9118_state, conf),
|
||||
DEFINE_PROP_UINT32("mode_16bit", lan9118_state, mode_16bit, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
||||
+1
-1
@@ -137,7 +137,7 @@ static void lance_instance_init(Object *obj)
|
||||
DEVICE(obj));
|
||||
}
|
||||
|
||||
static Property lance_properties[] = {
|
||||
static const Property lance_properties[] = {
|
||||
DEFINE_PROP_LINK("dma", SysBusPCNetState, state.dma_opaque,
|
||||
TYPE_DEVICE, DeviceState *),
|
||||
DEFINE_NIC_PROPERTIES(SysBusPCNetState, state.conf),
|
||||
|
||||
@@ -158,7 +158,7 @@ static void lasi_82596_instance_init(Object *obj)
|
||||
DEVICE(obj));
|
||||
}
|
||||
|
||||
static Property lasi_82596_properties[] = {
|
||||
static const Property lasi_82596_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(SysBusI82596State, state.conf),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
+1
-1
@@ -660,7 +660,7 @@ static void mcf_fec_instance_init(Object *obj)
|
||||
}
|
||||
}
|
||||
|
||||
static Property mcf_fec_properties[] = {
|
||||
static const Property mcf_fec_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(mcf_fec_state, conf),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
+1
-1
@@ -266,7 +266,7 @@ static void mipsnet_sysbus_reset(DeviceState *dev)
|
||||
mipsnet_reset(s);
|
||||
}
|
||||
|
||||
static Property mipsnet_properties[] = {
|
||||
static const Property mipsnet_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(MIPSnetState, conf),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
||||
+1
-1
@@ -546,7 +546,7 @@ static void msf2_emac_init(Object *obj)
|
||||
sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
|
||||
}
|
||||
|
||||
static Property msf2_emac_properties[] = {
|
||||
static const Property msf2_emac_properties[] = {
|
||||
DEFINE_PROP_LINK("ahb-bus", MSF2EmacState, dma_mr,
|
||||
TYPE_MEMORY_REGION, MemoryRegion *),
|
||||
DEFINE_NIC_PROPERTIES(MSF2EmacState, conf),
|
||||
|
||||
@@ -371,7 +371,7 @@ static const VMStateDescription mv88w8618_eth_vmsd = {
|
||||
}
|
||||
};
|
||||
|
||||
static Property mv88w8618_eth_properties[] = {
|
||||
static const Property mv88w8618_eth_properties[] = {
|
||||
DEFINE_NIC_PROPERTIES(mv88w8618_eth_state, conf),
|
||||
DEFINE_PROP_LINK("dma-memory", mv88w8618_eth_state, dma_mr,
|
||||
TYPE_MEMORY_REGION, MemoryRegion *),
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user