aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngi Kim <ingi2.kim@samsung.com>2015-10-02 05:00:17 -0400
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-10-20 12:37:54 -0400
commitf6375eafeb0fac0a32e88eb6e5984faf9648fe81 (patch)
tree79849cc5cb2c8a001dc918c12147109ac85eb98e
parent418dae2276065680bde7ae27d2c075e612a54de6 (diff)
[media] s5p-mfc: fix spelling errors
This patch fixes spelling errors in mfc encoder. inavild -> invaild Signed-off-by: Ingi Kim <ingi2.kim@samsung.com> Signed-off-by: Kamil Debski <k.debski@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/platform/s5p-mfc/s5p_mfc_enc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
index 94868f7214da..0d705219ec12 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
@@ -1826,7 +1826,7 @@ static int s5p_mfc_queue_setup(struct vb2_queue *vq,
1826 1826
1827 if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) { 1827 if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
1828 if (ctx->state != MFCINST_GOT_INST) { 1828 if (ctx->state != MFCINST_GOT_INST) {
1829 mfc_err("inavlid state: %d\n", ctx->state); 1829 mfc_err("invalid state: %d\n", ctx->state);
1830 return -EINVAL; 1830 return -EINVAL;
1831 } 1831 }
1832 1832
@@ -1866,7 +1866,7 @@ static int s5p_mfc_queue_setup(struct vb2_queue *vq,
1866 ctx->dev->alloc_ctx[MFC_BANK2_ALLOC_CTX]; 1866 ctx->dev->alloc_ctx[MFC_BANK2_ALLOC_CTX];
1867 } 1867 }
1868 } else { 1868 } else {
1869 mfc_err("inavlid queue type: %d\n", vq->type); 1869 mfc_err("invalid queue type: %d\n", vq->type);
1870 return -EINVAL; 1870 return -EINVAL;
1871 } 1871 }
1872 return 0; 1872 return 0;
@@ -1901,7 +1901,7 @@ static int s5p_mfc_buf_init(struct vb2_buffer *vb)
1901 vb2_dma_contig_plane_dma_addr(vb, 1); 1901 vb2_dma_contig_plane_dma_addr(vb, 1);
1902 ctx->src_bufs_cnt++; 1902 ctx->src_bufs_cnt++;
1903 } else { 1903 } else {
1904 mfc_err("inavlid queue type: %d\n", vq->type); 1904 mfc_err("invalid queue type: %d\n", vq->type);
1905 return -EINVAL; 1905 return -EINVAL;
1906 } 1906 }
1907 return 0; 1907 return 0;
@@ -1937,7 +1937,7 @@ static int s5p_mfc_buf_prepare(struct vb2_buffer *vb)
1937 return -EINVAL; 1937 return -EINVAL;
1938 } 1938 }
1939 } else { 1939 } else {
1940 mfc_err("inavlid queue type: %d\n", vq->type); 1940 mfc_err("invalid queue type: %d\n", vq->type);
1941 return -EINVAL; 1941 return -EINVAL;
1942 } 1942 }
1943 return 0; 1943 return 0;