From ab034c26deb381ee8f032ed0543847d5a78a4c39 Mon Sep 17 00:00:00 2001 From: "Peter A. G. Crosthwaite" Date: Wed, 13 Jun 2012 14:46:48 +1000 Subject: xilinx_axienet: droped the c_ on parameters Even though the xilinx tools do have C_ on all params by default, drop this for consistency with all the other xilinx IP (I.E. param names are the xilinx names without the C_ prefix) Signed-off-by: Peter A. G. Crosthwaite Signed-off-by: Edgar E. Iglesias --- hw/xilinx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/xilinx.h') diff --git a/hw/xilinx.h b/hw/xilinx.h index af3a631..91be0b3 100644 --- a/hw/xilinx.h +++ b/hw/xilinx.h @@ -58,8 +58,8 @@ xilinx_axiethernet_create(void *dmach, dev = qdev_create(NULL, "xilinx,axienet"); qdev_set_nic_properties(dev, nd); - qdev_prop_set_uint32(dev, "c_rxmem", rxmem); - qdev_prop_set_uint32(dev, "c_txmem", txmem); + qdev_prop_set_uint32(dev, "rxmem", rxmem); + qdev_prop_set_uint32(dev, "txmem", txmem); qdev_prop_set_ptr(dev, "dmach", dmach); qdev_init_nofail(dev); sysbus_mmio_map(sysbus_from_qdev(dev), 0, base); -- cgit v1.1