All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
To: unlisted-recipients:; (no To-header on input)
Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>,
	Linux Media Mailing List <linux-media@vger.kernel.org>,
	Mauro Carvalho Chehab <mchehab@infradead.org>,
	Hans Verkuil <hverkuil@xs4all.nl>,
	Pawel Osciak <pawel@osciak.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Kyungmin Park <kyungmin.park@samsung.com>
Subject: [PATCH 11/14] media: common: fix several typos
Date: Mon, 18 Feb 2019 14:29:05 -0500	[thread overview]
Message-ID: <2ed377fbee4991589509407353cf6becd79021a1.1550518128.git.mchehab+samsung@kernel.org> (raw)
In-Reply-To: <f235ba60b2b7e5fba09d3c6b0d5dbbd8a86ea9b9.1550518128.git.mchehab+samsung@kernel.org>

Use codespell to fix lots of typos over frontends.

Manually verified to avoid false-positives.

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
---
 drivers/media/common/saa7146/saa7146_video.c      | 2 +-
 drivers/media/common/siano/sms-cards.c            | 2 +-
 drivers/media/common/siano/smscoreapi.h           | 2 +-
 drivers/media/common/videobuf2/videobuf2-dma-sg.c | 2 +-
 drivers/media/common/videobuf2/videobuf2-memops.c | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/media/common/saa7146/saa7146_video.c b/drivers/media/common/saa7146/saa7146_video.c
index f90aa8109663..a0f0b5eef0bd 100644
--- a/drivers/media/common/saa7146/saa7146_video.c
+++ b/drivers/media/common/saa7146/saa7146_video.c
@@ -796,7 +796,7 @@ static int vidioc_s_fmt_vid_overlay(struct file *file, void *__fh, struct v4l2_f
 		return -EFAULT;
 	}
 
-	/* vv->ov.fh is used to indicate that we have valid overlay informations, too */
+	/* vv->ov.fh is used to indicate that we have valid overlay information, too */
 	vv->ov.fh = fh;
 
 	/* check if our current overlay is active */
diff --git a/drivers/media/common/siano/sms-cards.c b/drivers/media/common/siano/sms-cards.c
index af6b2268db61..e238c9bc17d3 100644
--- a/drivers/media/common/siano/sms-cards.c
+++ b/drivers/media/common/siano/sms-cards.c
@@ -311,7 +311,7 @@ int sms_board_led_feedback(struct smscore_device_t *coredev, int led)
 	int board_id = smscore_get_board_id(coredev);
 	struct sms_board *board = sms_get_board(board_id);
 
-	/* dont touch GPIO if LEDs are already set */
+	/* don't touch GPIO if LEDs are already set */
 	if (smscore_led_state(coredev, -1) == led)
 		return 0;
 
diff --git a/drivers/media/common/siano/smscoreapi.h b/drivers/media/common/siano/smscoreapi.h
index eb58853008c9..476fa7a8b152 100644
--- a/drivers/media/common/siano/smscoreapi.h
+++ b/drivers/media/common/siano/smscoreapi.h
@@ -750,7 +750,7 @@ struct sms_stats {
 	u32 num_of_corrected_mpe_tlbs;/* Number of MPE tables which were
 	corrected by MPE RS decoding */
 	/* Common params */
-	u32 ber_error_count;	/* Number of errornous SYNC bits. */
+	u32 ber_error_count;	/* Number of erroneous SYNC bits. */
 	u32 ber_bit_count;	/* Total number of SYNC bits. */
 
 	/* Interface information */
diff --git a/drivers/media/common/videobuf2/videobuf2-dma-sg.c b/drivers/media/common/videobuf2/videobuf2-dma-sg.c
index f02876d971d7..270c3162fdcb 100644
--- a/drivers/media/common/videobuf2/videobuf2-dma-sg.c
+++ b/drivers/media/common/videobuf2/videobuf2-dma-sg.c
@@ -67,7 +67,7 @@ static int vb2_dma_sg_alloc_compacted(struct vb2_dma_sg_buf *buf,
 		int i;
 
 		order = get_order(size);
-		/* Dont over allocate*/
+		/* Don't over allocate*/
 		if ((PAGE_SIZE << order) > size)
 			order--;
 
diff --git a/drivers/media/common/videobuf2/videobuf2-memops.c b/drivers/media/common/videobuf2/videobuf2-memops.c
index 89e51989332b..c4a85be48ac2 100644
--- a/drivers/media/common/videobuf2/videobuf2-memops.c
+++ b/drivers/media/common/videobuf2/videobuf2-memops.c
@@ -121,7 +121,7 @@ static void vb2_common_vm_close(struct vm_area_struct *vma)
 }
 
 /*
- * vb2_common_vm_ops - common vm_ops used for tracking refcount of mmaped
+ * vb2_common_vm_ops - common vm_ops used for tracking refcount of mmapped
  * video buffers
  */
 const struct vm_operations_struct vb2_common_vm_ops = {
-- 
2.20.1


  parent reply	other threads:[~2019-02-18 19:29 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-18 19:28 [PATCH 01/14] media: dvb-frontends: fix several typos Mauro Carvalho Chehab
2019-02-18 19:28 ` [PATCH 02/14] media: radio: " Mauro Carvalho Chehab
2019-02-18 19:28 ` [PATCH 03/14] media: dvb-core: " Mauro Carvalho Chehab
2019-02-18 19:28 ` [PATCH 04/14] media: i2c: " Mauro Carvalho Chehab
2019-02-18 21:39   ` Sakari Ailus
2019-02-18 19:28 ` [PATCH 05/14] media: pci: " Mauro Carvalho Chehab
2019-02-18 19:29 ` [PATCH 06/14] media: platform: " Mauro Carvalho Chehab
2019-02-18 19:29   ` Mauro Carvalho Chehab
2019-02-19 11:17   ` Niklas Söderlund
2019-02-19 11:17     ` Niklas Söderlund
     [not found]   ` <362e90167292e8d0c03a8d0753cc26b89549d854.1550518128.git.mchehab+samsung-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2019-02-19 12:17     ` Andrzej Pietrasiewicz
2019-02-19 12:17       ` Andrzej Pietrasiewicz
     [not found]       ` <8328b00f-d48f-187e-e53f-c52ac50b5b61-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2019-02-19 12:19         ` Andrzej Pietrasiewicz
2019-02-19 12:19           ` Andrzej Pietrasiewicz
2019-02-19 14:10     ` Benoit Parrot
2019-02-19 14:10       ` Benoit Parrot
2019-02-20  0:46     ` houlong wei
2019-02-20  0:46       ` houlong wei
2019-02-19 14:55   ` Kieran Bingham
2019-02-19 14:55     ` Kieran Bingham
2019-02-19 16:31   ` Lad, Prabhakar
2019-02-19 16:31     ` Lad, Prabhakar
2019-02-19 16:57   ` Philipp Zabel
2019-02-19 16:57     ` Philipp Zabel
2019-02-20  1:15   ` Yong
2019-02-20  1:15     ` Yong
2019-02-18 19:29 ` [PATCH 07/14] media: rc: " Mauro Carvalho Chehab
2019-02-19  9:56   ` Sean Young
2019-02-18 19:29 ` [PATCH 08/14] media: tuners: " Mauro Carvalho Chehab
2019-02-18 19:29 ` [PATCH 09/14] media: usb: " Mauro Carvalho Chehab
2019-02-18 19:29   ` [09/14] " Mauro Carvalho Chehab
2019-02-18 19:29 ` [PATCH 10/14] media: v4l2-core: " Mauro Carvalho Chehab
2019-02-18 19:29 ` Mauro Carvalho Chehab [this message]
2019-02-18 19:29 ` [PATCH 12/14] media: include: " Mauro Carvalho Chehab
2019-02-18 19:29   ` Mauro Carvalho Chehab
2019-02-18 19:29   ` Mauro Carvalho Chehab
2019-02-19 16:28   ` Lad, Prabhakar
2019-02-19 16:28     ` Lad, Prabhakar
2019-02-19 16:28     ` Lad, Prabhakar
2019-02-18 19:29 ` [PATCH 13/14] media: Documentation: " Mauro Carvalho Chehab
2019-02-19 16:56   ` Philipp Zabel
2019-02-18 19:29 ` [PATCH 14/14] media: staging: " Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2ed377fbee4991589509407353cf6becd79021a1.1550518128.git.mchehab+samsung@kernel.org \
    --to=mchehab+samsung@kernel.org \
    --cc=hverkuil@xs4all.nl \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-media@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mchehab@infradead.org \
    --cc=pawel@osciak.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.