]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
media: atomisp: Fix spelling mistake "mis-match" -> "mismatch"
authorColin Ian King <colin.i.king@gmail.com>
Thu, 13 Oct 2022 22:32:27 +0000 (23:32 +0100)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Mon, 24 Oct 2022 17:03:53 +0000 (19:03 +0200)
There are a few spelling mistakes in dev_err messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/staging/media/atomisp/pci/atomisp_cmd.c
drivers/staging/media/atomisp/pci/atomisp_compat_css20.c

index c72d0e34467104c80b3c870f1e7ebeb23849d7b9..90f25cc2222764f0533c28347d75de02b31a4ad3 100644 (file)
@@ -3288,7 +3288,7 @@ int atomisp_css_cp_dvs2_coefs(struct atomisp_sub_device *asd,
        if (!IS_ISP2401) {
                if (sizeof(*cur) != sizeof(coefs->grid) ||
                    memcmp(&coefs->grid, cur, sizeof(coefs->grid))) {
-                       dev_err(asd->isp->dev, "dvs grid mis-match!\n");
+                       dev_err(asd->isp->dev, "dvs grid mismatch!\n");
                        /* If the grid info in the argument differs from the current
                        grid info, we tell the caller to reset the grid size and
                        try again. */
@@ -3344,7 +3344,7 @@ int atomisp_css_cp_dvs2_coefs(struct atomisp_sub_device *asd,
 
                if (sizeof(*cur) != sizeof(dvs2_coefs.grid) ||
                    memcmp(&dvs2_coefs.grid, cur, sizeof(dvs2_coefs.grid))) {
-                       dev_err(asd->isp->dev, "dvs grid mis-match!\n");
+                       dev_err(asd->isp->dev, "dvs grid mismatch!\n");
                        /* If the grid info in the argument differs from the current
                        grid info, we tell the caller to reset the grid size and
                        try again. */
index fdc05548d972327654a8f1d966e33a1f6b39649b..b36cbde7036a2fd30bc4e2637240e7a4425872a5 100644 (file)
@@ -3180,7 +3180,7 @@ static int atomisp_compare_dvs_grid(struct atomisp_sub_device *asd,
        }
 
        if (sizeof(*cur) != sizeof(*atomgrid)) {
-               dev_err(asd->isp->dev, "dvs grid mis-match!\n");
+               dev_err(asd->isp->dev, "dvs grid mismatch!\n");
                return -EINVAL;
        }