diff options
author | Peter A. G. Crosthwaite | 2012-06-13 06:46:41 +0200 |
---|---|---|
committer | Edgar E. Iglesias | 2012-06-15 13:08:13 +0200 |
commit | 23d6055eb4f1ad7001e577b3c64a25a64d4908ee (patch) | |
tree | cfdb30c59798f3b9bf9f00ebc6e8e7a8536a9c97 /hw/xilinx_uartlite.c | |
parent | xilinx_axidma: (un)reversed irq initialisation (diff) | |
download | qemu-23d6055eb4f1ad7001e577b3c64a25a64d4908ee.tar.gz qemu-23d6055eb4f1ad7001e577b3c64a25a64d4908ee.tar.xz qemu-23d6055eb4f1ad7001e577b3c64a25a64d4908ee.zip |
xilinx_uartlite: changed device name
Changed device name to xlnx,xps-uartlite. This is the exact name of the device
in the xilinx EDK development tools.
Signed-off-by: Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'hw/xilinx_uartlite.c')
-rw-r--r-- | hw/xilinx_uartlite.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/xilinx_uartlite.c b/hw/xilinx_uartlite.c index aa0170db49..d0f32db2c6 100644 --- a/hw/xilinx_uartlite.c +++ b/hw/xilinx_uartlite.c @@ -202,7 +202,8 @@ static int xilinx_uartlite_init(SysBusDevice *dev) sysbus_init_irq(dev, &s->irq); uart_update_status(s); - memory_region_init_io(&s->mmio, &uart_ops, s, "xilinx-uartlite", R_MAX * 4); + memory_region_init_io(&s->mmio, &uart_ops, s, "xlnx.xps-uartlite", + R_MAX * 4); sysbus_init_mmio(dev, &s->mmio); s->chr = qemu_char_get_next_serial(); @@ -219,7 +220,7 @@ static void xilinx_uartlite_class_init(ObjectClass *klass, void *data) } static TypeInfo xilinx_uartlite_info = { - .name = "xilinx,uartlite", + .name = "xlnx.xps-uartlite", .parent = TYPE_SYS_BUS_DEVICE, .instance_size = sizeof (struct xlx_uartlite), .class_init = xilinx_uartlite_class_init, |