mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
Remove checks on MAX_SERIAL_PORTS that are just bounds checks
Remove checks on MAX_SERIAL_PORTS that were just checking whether they were within bounds for the serial_hds[] array and falling back to NULL if not. This isn't needed with the serial_hd() function, which returns NULL for all indexes beyond what the user set up. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180420145249.32435-9-peter.maydell@linaro.org
This commit is contained in:
parent
9bca0edb28
commit
fc38a1120c
7 changed files with 8 additions and 20 deletions
|
@ -117,9 +117,7 @@ static void fsl_imx25_realize(DeviceState *dev, Error **errp)
|
|||
{ FSL_IMX25_UART5_ADDR, FSL_IMX25_UART5_IRQ }
|
||||
};
|
||||
|
||||
if (i < MAX_SERIAL_PORTS) {
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
}
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
|
||||
object_property_set_bool(OBJECT(&s->uart[i]), true, "realized", &err);
|
||||
if (err) {
|
||||
|
|
|
@ -106,9 +106,7 @@ static void fsl_imx31_realize(DeviceState *dev, Error **errp)
|
|||
{ FSL_IMX31_UART2_ADDR, FSL_IMX31_UART2_IRQ },
|
||||
};
|
||||
|
||||
if (i < MAX_SERIAL_PORTS) {
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
}
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
|
||||
object_property_set_bool(OBJECT(&s->uart[i]), true, "realized", &err);
|
||||
if (err) {
|
||||
|
|
|
@ -188,9 +188,7 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
{ FSL_IMX6_UART5_ADDR, FSL_IMX6_UART5_IRQ },
|
||||
};
|
||||
|
||||
if (i < MAX_SERIAL_PORTS) {
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
}
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
|
||||
object_property_set_bool(OBJECT(&s->uart[i]), true, "realized", &err);
|
||||
if (err) {
|
||||
|
|
|
@ -390,9 +390,7 @@ static void fsl_imx7_realize(DeviceState *dev, Error **errp)
|
|||
};
|
||||
|
||||
|
||||
if (i < MAX_SERIAL_PORTS) {
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
}
|
||||
qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
|
||||
|
||||
object_property_set_bool(OBJECT(&s->uart[i]), true, "realized",
|
||||
&error_abort);
|
||||
|
|
|
@ -172,7 +172,6 @@ static MemoryRegion *make_uart(MPS2TZMachineState *mms, void *opaque,
|
|||
{
|
||||
CMSDKAPBUART *uart = opaque;
|
||||
int i = uart - &mms->uart[0];
|
||||
Chardev *uartchr = i < MAX_SERIAL_PORTS ? serial_hd(i) : NULL;
|
||||
int rxirqno = i * 2;
|
||||
int txirqno = i * 2 + 1;
|
||||
int combirqno = i + 10;
|
||||
|
@ -182,7 +181,7 @@ static MemoryRegion *make_uart(MPS2TZMachineState *mms, void *opaque,
|
|||
|
||||
init_sysbus_child(OBJECT(mms), name, uart,
|
||||
sizeof(mms->uart[0]), TYPE_CMSDK_APB_UART);
|
||||
qdev_prop_set_chr(DEVICE(uart), "chardev", uartchr);
|
||||
qdev_prop_set_chr(DEVICE(uart), "chardev", serial_hd(i));
|
||||
qdev_prop_set_uint32(DEVICE(uart), "pclk-frq", SYSCLK_FRQ);
|
||||
object_property_set_bool(OBJECT(uart), true, "realized", &error_fatal);
|
||||
s = SYS_BUS_DEVICE(uart);
|
||||
|
|
|
@ -230,7 +230,6 @@ static void mps2_common_init(MachineState *machine)
|
|||
static const hwaddr uartbase[] = {0x40004000, 0x40005000,
|
||||
0x40006000, 0x40007000,
|
||||
0x40009000};
|
||||
Chardev *uartchr = i < MAX_SERIAL_PORTS ? serial_hd(i) : NULL;
|
||||
/* RX irq number; TX irq is always one greater */
|
||||
static const int uartirq[] = {0, 2, 4, 18, 20};
|
||||
qemu_irq txovrint = NULL, rxovrint = NULL;
|
||||
|
@ -245,7 +244,7 @@ static void mps2_common_init(MachineState *machine)
|
|||
qdev_get_gpio_in(armv7m, uartirq[i]),
|
||||
txovrint, rxovrint,
|
||||
NULL,
|
||||
uartchr, SYSCLK_FRQ);
|
||||
serial_hd(i), SYSCLK_FRQ);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -270,7 +269,6 @@ static void mps2_common_init(MachineState *machine)
|
|||
static const hwaddr uartbase[] = {0x40004000, 0x40005000,
|
||||
0x4002c000, 0x4002d000,
|
||||
0x4002e000};
|
||||
Chardev *uartchr = i < MAX_SERIAL_PORTS ? serial_hd(i) : NULL;
|
||||
Object *txrx_orgate;
|
||||
DeviceState *txrx_orgate_dev;
|
||||
|
||||
|
@ -287,7 +285,7 @@ static void mps2_common_init(MachineState *machine)
|
|||
qdev_get_gpio_in(orgate_dev, i * 2),
|
||||
qdev_get_gpio_in(orgate_dev, i * 2 + 1),
|
||||
NULL,
|
||||
uartchr, SYSCLK_FRQ);
|
||||
serial_hd(i), SYSCLK_FRQ);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -135,8 +135,7 @@ static void stm32f205_soc_realize(DeviceState *dev_soc, Error **errp)
|
|||
/* Attach UART (uses USART registers) and USART controllers */
|
||||
for (i = 0; i < STM_NUM_USARTS; i++) {
|
||||
dev = DEVICE(&(s->usart[i]));
|
||||
qdev_prop_set_chr(dev, "chardev",
|
||||
i < MAX_SERIAL_PORTS ? serial_hd(i) : NULL);
|
||||
qdev_prop_set_chr(dev, "chardev", serial_hd(i));
|
||||
object_property_set_bool(OBJECT(&s->usart[i]), true, "realized", &err);
|
||||
if (err != NULL) {
|
||||
error_propagate(errp, err);
|
||||
|
|
Loading…
Reference in a new issue