diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-04-24 12:26:42 +0300 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-04-28 20:07:58 +0300 |
commit | 27b0b83233ced9e6b7448875a40382f7384daccd (patch) | |
tree | bf70cdb19891913b6f13919e8d3593d8f69273f2 /drivers/infiniband/sw/rxe/rxe_verbs.c | |
parent | f0bb2d44ca26b7090dc7bade8877b77005f07dfc (diff) | |
download | linux-27b0b83233ced9e6b7448875a40382f7384daccd.tar.xz |
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/rxe/rxe_verbs.c')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_verbs.c | 2 |
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); } |