Commit a343e3f8 authored by Colin Ian King's avatar Colin Ian King Committed by Jason Gunthorpe

qedr: Fix spelling mistake: "hanlde" -> "handle"

Trivial fix to spelling mistake in DP_ERR message text
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarShamir Rabinovitch <shamir.rabinovitch@oracle.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 2253fc0c
...@@ -708,7 +708,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle) ...@@ -708,7 +708,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
"Error: CQ event with NULL pointer ibcq. Handle=%llx\n", "Error: CQ event with NULL pointer ibcq. Handle=%llx\n",
roce_handle64); roce_handle64);
} }
DP_ERR(dev, "CQ event %d on hanlde %p\n", e_code, cq); DP_ERR(dev, "CQ event %d on handle %p\n", e_code, cq);
break; break;
case EVENT_TYPE_QP: case EVENT_TYPE_QP:
qp = (struct qedr_qp *)(uintptr_t)roce_handle64; 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) ...@@ -724,7 +724,7 @@ static void qedr_affiliated_event(void *context, u8 e_code, void *fw_handle)
"Error: QP event with NULL pointer ibqp. Handle=%llx\n", "Error: QP event with NULL pointer ibqp. Handle=%llx\n",
roce_handle64); roce_handle64);
} }
DP_ERR(dev, "QP event %d on hanlde %p\n", e_code, qp); DP_ERR(dev, "QP event %d on handle %p\n", e_code, qp);
break; break;
default: default:
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment