Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}