Skip to content

Commit 917600e

Browse files
Hans ZhangMani-Sadhasivam
authored andcommitted
PCI: rockchip-host: Correct non-fatal error log message
Correct the debug message for PCIE_CLIENT_INT_NFATAL_ERR from "no fatal error" to "non fatal error interrupt received" to match the actual interrupt semantics. This avoids confusion in log interpretation. Signed-off-by: Hans Zhang <[email protected]> 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 fcc5f58 commit 917600e

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
@@ -489,7 +489,7 @@ static irqreturn_t rockchip_pcie_client_irq_handler(int irq, void *arg)
489489
dev_dbg(dev, "fatal error interrupt received\n");
490490

491491
if (reg & PCIE_CLIENT_INT_NFATAL_ERR)
492-
dev_dbg(dev, "no fatal error interrupt received\n");
492+
dev_dbg(dev, "non fatal error interrupt received\n");
493493

494494
if (reg & PCIE_CLIENT_INT_CORR_ERR)
495495
dev_dbg(dev, "correctable error interrupt received\n");

0 commit comments

Comments
 (0)