media: sun6i: fix spelling mistake "droped" -> "dropped"

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>
This commit is contained in:
Colin Ian King 2018-11-29 05:50:38 -05:00 committed by Mauro Carvalho Chehab
parent 87c9f19714
commit fe8fb03273
1 changed files with 2 additions and 2 deletions

View 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;
}