Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

i3c: mipi-i3c-hci: Uniform ring number printouts

Use the same "Ring" prefix in all prints that print out the ring number.

Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Reviewed-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20250827103009.243771-4-jarkko.nikula@linux.intel.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Jarkko Nikula and committed by
Alexandre Belloni
4470c85e 422d0e40

+2 -2
+2 -2
drivers/i3c/master/mipi-i3c-hci/dma.c
··· 775 775 u32 ring_status; 776 776 777 777 dev_notice_ratelimited(&hci->master.dev, 778 - "ring %d: Transfer Aborted\n", i); 778 + "Ring %d: Transfer Aborted\n", i); 779 779 mipi_i3c_hci_resume(hci); 780 780 ring_status = rh_reg_read(RING_STATUS); 781 781 if (!(ring_status & RING_STATUS_RUNNING) && ··· 795 795 } 796 796 if (status & INTR_IBI_RING_FULL) 797 797 dev_err_ratelimited(&hci->master.dev, 798 - "ring %d: IBI Ring Full Condition\n", i); 798 + "Ring %d: IBI Ring Full Condition\n", i); 799 799 800 800 handled = true; 801 801 }