On Thu, 9 Mar 2023 15:03:33 +0000 James Clark <james.clark@xxxxxxx> wrote: > Now that it exists, use it instead of doing the multiplication manually. > > Signed-off-by: James Clark <james.clark@xxxxxxx> Hmm. I've stared at the users of this for a bit, and it's not actually obvious that it's being used as an array of u32. The only typed user of this is as the 2nd parameter of tty_insert_flip_string() which is an unsigned char * I wonder if that sizeof(u32) isn't a 'correct' description of where the 4 is coming from even if it has the right value? Perhaps the fifo depth is just a multiple of 4? Jonathan > --- > drivers/tty/serial/qcom_geni_serial.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c > index d69592e5e2ec..23fc33d182ac 100644 > --- a/drivers/tty/serial/qcom_geni_serial.c > +++ b/drivers/tty/serial/qcom_geni_serial.c > @@ -1056,9 +1056,9 @@ static int setup_fifos(struct qcom_geni_serial_port *port) > (port->tx_fifo_depth * port->tx_fifo_width) / BITS_PER_BYTE; > > if (port->rx_buf && (old_rx_fifo_depth != port->rx_fifo_depth) && port->rx_fifo_depth) { > - port->rx_buf = devm_krealloc(uport->dev, port->rx_buf, > - port->rx_fifo_depth * sizeof(u32), > - GFP_KERNEL); > + port->rx_buf = devm_krealloc_array(uport->dev, port->rx_buf, > + port->rx_fifo_depth, sizeof(u32), > + GFP_KERNEL); > if (!port->rx_buf) > return -ENOMEM; > }