Skip to content

Commit fcc5f58

Browse files
Hans ZhangMani-Sadhasivam
authored andcommitted
PCI: rockchip-host: Fix "Unexpected Completion" log message
Fix the debug message for the PCIE_CORE_INT_UCR interrupt to clearly indicate "Unexpected Completion" instead of a duplicate "malformed TLP" message. Fixes: e77f847 ("PCI: rockchip: Add Rockchip PCIe controller support") Signed-off-by: Hans Zhang <[email protected]> [mani: added fixes tag] Signed-off-by: Manivannan Sadhasivam <[email protected]> Reviewed-by: Manivannan Sadhasivam <[email protected]> Acked-by: Shawn Lin <[email protected]> Link: https://patch.msgid.link/[email protected]
1 parent 19272b3 commit fcc5f58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pci/controller/pcie-rockchip-host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ static irqreturn_t rockchip_pcie_subsys_irq_handler(int irq, void *arg)
439439
dev_dbg(dev, "malformed TLP received from the link\n");
440440

441441
if (sub_reg & PCIE_CORE_INT_UCR)
442-
dev_dbg(dev, "malformed TLP received from the link\n");
442+
dev_dbg(dev, "Unexpected Completion received from the link\n");
443443

444444
if (sub_reg & PCIE_CORE_INT_FCE)
445445
dev_dbg(dev, "an error was observed in the flow control advertisements from the other side\n");

0 commit comments

Comments
 (0)