Skip to content

Commit a343e3f

Browse files
Colin Ian Kingjgunthorpe
authored andcommitted
qedr: Fix spelling mistake: "hanlde" -> "handle"
Trivial fix to spelling mistake in DP_ERR message text Signed-off-by: Colin Ian King <[email protected]> Reviewed-by: Shamir Rabinovitch <[email protected]> Signed-off-by: Jason Gunthorpe <[email protected]>
1 parent 2253fc0 commit a343e3f

File tree

1 file changed

+2
-2
lines changed
  • drivers/infiniband/hw/qedr

1 file changed

+2
-2
lines changed

drivers/infiniband/hw/qedr/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
708708
"Error: CQ event with NULL pointer ibcq. Handle=%llx\n",
709709
roce_handle64);
710710
}
711-
DP_ERR(dev, "CQ event %d on hanlde %p\n", e_code, cq);
711+
DP_ERR(dev, "CQ event %d on handle %p\n", e_code, cq);
712712
break;
713713
case EVENT_TYPE_QP:
714714
qp = (struct qedr_qp *)(uintptr_t)roce_handle64;
@@ -724,7 +724,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
724724
"Error: QP event with NULL pointer ibqp. Handle=%llx\n",
725725
roce_handle64);
726726
}
727-
DP_ERR(dev, "QP event %d on hanlde %p\n", e_code, qp);
727+
DP_ERR(dev, "QP event %d on handle %p\n", e_code, qp);
728728
break;
729729
default:
730730
break;

0 commit comments

Comments
 (0)