Commit fe8fb032 authored by Colin Ian King's avatar Colin Ian King Committed by Mauro Carvalho Chehab

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

There are spelling mistakes in dev_dbg messages, fix them.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Acked-by: default avatarMaxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 87c9f197
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment