Re: [PATCH v3 3/3] i3c: master: dw: Use i3c_writel_fifo() and i3c_readl_fifo()

From: Wolfram Sang
Date: Wed Jun 25 2025 - 03:27:45 EST



> static void dw_i3c_master_read_rx_fifo(struct dw_i3c_master *master,
> u8 *bytes, int nbytes)
> {
> - return dw_i3c_master_read_fifo(master, RX_TX_DATA_PORT, bytes, nbytes);
> + i3c_readl_fifo(master->regs + RX_TX_DATA_PORT, bytes, nbytes);
> }

Same question as patch 2, why not remove the surrounding functions?