diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-11-29 05:50:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-12-07 08:19:35 -0500 |
commit | fe8fb032732f6310888d7f765f593d1c337f7e36 (patch) | |
tree | 59a827140aa0af3d8e5047ab2511212229b6b05b /drivers/media | |
parent | 87c9f19714921df17d13c24e5d20ab04942f1a91 (diff) | |
download | linux-fe8fb032732f6310888d7f765f593d1c337f7e36.tar.bz2 |
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>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c b/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c index 37c85b8f37a9..b04300c3811f 100644 --- a/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c +++ b/drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c @@ -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; } |