media: atomisp: fix spelling mistake "unsupport" -> "unsupported"

There are spelling mistakes in some dev_err messages. Fix these.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Colin Ian King 2020-08-06 13:57:17 +02:00 коммит произвёл Mauro Carvalho Chehab
Родитель 9b734bb9e7
Коммит 5b4b09788d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -2595,7 +2595,7 @@ static int atomisp_g_parm(struct file *file, void *fh,
struct atomisp_device *isp = video_get_drvdata(vdev);
if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
dev_err(isp->dev, "unsupport v4l2 buf type\n");
dev_err(isp->dev, "unsupported v4l2 buf type\n");
return -EINVAL;
}
@ -2617,7 +2617,7 @@ static int atomisp_s_parm(struct file *file, void *fh,
int fps;
if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
dev_err(isp->dev, "unsupport v4l2 buf type\n");
dev_err(isp->dev, "unsupported v4l2 buf type\n");
return -EINVAL;
}
@ -2675,7 +2675,7 @@ static int atomisp_s_parm_file(struct file *file, void *fh,
struct atomisp_device *isp = video_get_drvdata(vdev);
if (parm->type != V4L2_BUF_TYPE_VIDEO_OUTPUT) {
dev_err(isp->dev, "unsupport v4l2 buf type for output\n");
dev_err(isp->dev, "unsupported v4l2 buf type for output\n");
return -EINVAL;
}