diff mbox

cryptodev: fix two typos in error message

Message ID 20170629115751.72337-1-bjhoupu@linux.vnet.ibm.com
State New
Headers show

Commit Message

Pu Hou June 29, 2017, 11:57 a.m. UTC
Currently we have the name of the backend 'cryptodev-builtin' misspelled
as 'cryptdov-builtin' in two potentially user facing error messages.
Let's fix this.

Furthermore The second mention of 'cryptodev-builtin' omits 'backend'.
Let's make things consistent by adding it.

Reported-by: Timur Bagramov <BAGRAMOV@de.ibm.com>
Reviewed-by: Halil Pasic <pasic@linux.vnet.ibm.com>
Signed-off-by: Pu Hou <bjhoupu@linux.vnet.ibm.com>
---
 backends/cryptodev-builtin.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/backends/cryptodev-builtin.c b/backends/cryptodev-builtin.c
index 657c0ba2f3..4e619dfca8 100644
--- a/backends/cryptodev-builtin.c
+++ b/backends/cryptodev-builtin.c
@@ -70,7 +70,7 @@  static void cryptodev_builtin_init(
 
     if (queues != 1) {
         error_setg(errp,
-                  "Only support one queue in cryptdov-builtin backend");
+                  "Only support one queue in cryptodev-builtin backend");
         return;
     }
 
@@ -314,7 +314,7 @@  static int cryptodev_builtin_sym_operation(
 
     if (op_info->op_type == VIRTIO_CRYPTO_SYM_OP_ALGORITHM_CHAINING) {
         error_setg(errp,
-               "Algorithm chain is unsupported for cryptdoev-builtin");
+               "Algorithm chain is unsupported for cryptodev-builtin backend");
         return -VIRTIO_CRYPTO_NOTSUPP;
     }