summaryrefslogtreecommitdiff
path: root/drivers/infiniband/sw
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-04-24 10:26:42 +0100
committerDoug Ledford <dledford@redhat.com>2017-04-28 13:07:58 -0400
commit27b0b83233ced9e6b7448875a40382f7384daccd (patch)
treebf70cdb19891913b6f13919e8d3593d8f69273f2 /drivers/infiniband/sw
parentf0bb2d44ca26b7090dc7bade8877b77005f07dfc (diff)
IB/rxe: fix typo: "algorithmi" -> "algorithm"
trivial fix to typo in pr_err message Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/sw')
-rw-r--r--drivers/infiniband/sw/rxe/rxe_verbs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_verbs.c b/drivers/infiniband/sw/rxe/rxe_verbs.c
index 350ab443b21d..dbede3026138 100644
--- a/drivers/infiniband/sw/rxe/rxe_verbs.c
+++ b/drivers/infiniband/sw/rxe/rxe_verbs.c
@@ -1326,7 +1326,7 @@ int rxe_register_device(struct rxe_dev *rxe)
rxe->tfm = crypto_alloc_shash("crc32", 0, 0);
if (IS_ERR(rxe->tfm)) {
- pr_err("failed to allocate crc algorithmi err:%ld",
+ pr_err("failed to allocate crc algorithm err:%ld\n",
PTR_ERR(rxe->tfm));
return PTR_ERR(rxe->tfm);
}