Skip to content
Snippets Groups Projects
Commit 70ef6a5b authored by Liming Wang's avatar Liming Wang Committed by Anthony Liguori
Browse files

xilinx_zynq: Fix wrong IRQ number of the second EHCI controller


The IRQ number of the second EHCI controller should be 76, not 75.

Signed-off-by: default avatarLiming Wang <walimisdev@gmail.com>
Tested-by: default avatarPeter Crosthwaite <peter.crosthwaite@petalogix.com>
Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
parent fb6d1bbd
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ static void zynq_init(QEMUMachineInitArgs *args)
zynq_init_spi_flashes(0xE000D000, pic[51-IRQ_OFFSET], true);
sysbus_create_simple("xlnx,ps7-usb", 0xE0002000, pic[53-IRQ_OFFSET]);
sysbus_create_simple("xlnx,ps7-usb", 0xE0003000, pic[75-IRQ_OFFSET]);
sysbus_create_simple("xlnx,ps7-usb", 0xE0003000, pic[76-IRQ_OFFSET]);
sysbus_create_simple("cadence_uart", 0xE0000000, pic[59-IRQ_OFFSET]);
sysbus_create_simple("cadence_uart", 0xE0001000, pic[82-IRQ_OFFSET]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment