Skip to content

Commit 4470c85

Browse files
jhnikulaalexandrebelloni
authored andcommitted
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>
1 parent 422d0e4 commit 4470c85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • drivers/i3c/master/mipi-i3c-hci

drivers/i3c/master/mipi-i3c-hci/dma.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ static bool hci_dma_irq_handler(struct i3c_hci *hci)
775775
u32 ring_status;
776776

777777
dev_notice_ratelimited(&hci->master.dev,
778-
"ring %d: Transfer Aborted\n", i);
778+
"Ring %d: Transfer Aborted\n", i);
779779
mipi_i3c_hci_resume(hci);
780780
ring_status = rh_reg_read(RING_STATUS);
781781
if (!(ring_status & RING_STATUS_RUNNING) &&
@@ -795,7 +795,7 @@ static bool hci_dma_irq_handler(struct i3c_hci *hci)
795795
}
796796
if (status & INTR_IBI_RING_FULL)
797797
dev_err_ratelimited(&hci->master.dev,
798-
"ring %d: IBI Ring Full Condition\n", i);
798+
"Ring %d: IBI Ring Full Condition\n", i);
799799

800800
handled = true;
801801
}

0 commit comments

Comments
 (0)