media: sun6i: fix spelling mistake "droped" -> "dropped"
authorColin Ian King <colin.king@canonical.com>
Thu, 29 Nov 2018 10:50:38 +0000 (05:50 -0500)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Fri, 7 Dec 2018 13:19:35 +0000 (08:19 -0500)
There are spelling mistakes in dev_dbg messages, fix them.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c

index 37c85b8..b04300c 100644 (file)
@@ -261,7 +261,7 @@ void sun6i_video_frame_done(struct sun6i_video *video)
        buf = list_first_entry(&video->dma_queue,
                               struct sun6i_csi_buffer, list);
        if (list_is_last(&buf->list, &video->dma_queue)) {
-               dev_dbg(video->csi->dev, "Frame droped!\n");
+               dev_dbg(video->csi->dev, "Frame dropped!\n");
                goto unlock;
        }
 
@@ -274,7 +274,7 @@ void sun6i_video_frame_done(struct sun6i_video *video)
        if (!next_buf->queued_to_csi) {
                next_buf->queued_to_csi = true;
                sun6i_csi_update_buf_addr(video->csi, next_buf->dma_addr);
-               dev_dbg(video->csi->dev, "Frame droped!\n");
+               dev_dbg(video->csi->dev, "Frame dropped!\n");
                goto unlock;
        }