All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-media@vger.kernel.org
Subject: [PATCH 05/14] omap3isp: Fix trivial typos
Date: Tue,  5 Apr 2011 09:57:27 +0200	[thread overview]
Message-ID: <1301990256-6963-6-git-send-email-laurent.pinchart@ideasonboard.com> (raw)
In-Reply-To: <1301990256-6963-1-git-send-email-laurent.pinchart@ideasonboard.com>

From: Michael Jones <michael.jones@matrix-vision.de>

It doesn't get more trivial than these.

Signed-off-by: Michael Jones <michael.jones@matrix-vision.de>
---
 drivers/media/video/omap3isp/isp.c        |    4 ++--
 drivers/media/video/omap3isp/ispccdc.c    |    4 ++--
 drivers/media/video/omap3isp/isppreview.c |    2 +-
 drivers/media/video/omap3isp/ispqueue.c   |    4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/media/video/omap3isp/isp.c b/drivers/media/video/omap3isp/isp.c
index 1a9963bd..7d68b10 100644
--- a/drivers/media/video/omap3isp/isp.c
+++ b/drivers/media/video/omap3isp/isp.c
@@ -715,7 +715,7 @@ static int isp_pipeline_link_notify(struct media_pad *source,
  * Walk the entities chain starting at the pipeline output video node and start
  * all modules in the chain in the given mode.
  *
- * Return 0 if successfull, or the return value of the failed video::s_stream
+ * Return 0 if successful, or the return value of the failed video::s_stream
  * operation otherwise.
  */
 static int isp_pipeline_enable(struct isp_pipeline *pipe,
@@ -883,7 +883,7 @@ static int isp_pipeline_disable(struct isp_pipeline *pipe)
  * Set the pipeline to the given stream state. Pipelines can be started in
  * single-shot or continuous mode.
  *
- * Return 0 if successfull, or the return value of the failed video::s_stream
+ * Return 0 if successful, or the return value of the failed video::s_stream
  * operation otherwise.
  */
 int omap3isp_pipeline_set_stream(struct isp_pipeline *pipe,
diff --git a/drivers/media/video/omap3isp/ispccdc.c b/drivers/media/video/omap3isp/ispccdc.c
index 5ff9d14..fd811ea 100644
--- a/drivers/media/video/omap3isp/ispccdc.c
+++ b/drivers/media/video/omap3isp/ispccdc.c
@@ -1338,7 +1338,7 @@ static int ccdc_sbl_wait_idle(struct isp_ccdc_device *ccdc,
  * @ccdc: Pointer to ISP CCDC device.
  * @event: Pointing which event trigger handler
  *
- * Return 1 when the event and stopping request combination is satisfyied,
+ * Return 1 when the event and stopping request combination is satisfied,
  * zero otherwise.
  */
 static int __ccdc_handle_stopping(struct isp_ccdc_device *ccdc, u32 event)
@@ -1618,7 +1618,7 @@ static int ccdc_video_queue(struct isp_video *video, struct isp_buffer *buffer)
 
 	ccdc_set_outaddr(ccdc, buffer->isp_addr);
 
-	/* We now have a buffer queued on the output, restart the pipeline in
+	/* We now have a buffer queued on the output, restart the pipeline
 	 * on the next CCDC interrupt if running in continuous mode (or when
 	 * starting the stream).
 	 */
diff --git a/drivers/media/video/omap3isp/isppreview.c b/drivers/media/video/omap3isp/isppreview.c
index baf9374..6af0f23 100644
--- a/drivers/media/video/omap3isp/isppreview.c
+++ b/drivers/media/video/omap3isp/isppreview.c
@@ -755,7 +755,7 @@ static struct preview_update update_attrs[] = {
  * @configs - pointer to update config structure.
  * @config - return pointer to appropriate structure field.
  * @bit - for which feature to return pointers.
- * Return size of coresponding prev_params member
+ * Return size of corresponding prev_params member
  */
 static u32
 __preview_get_ptrs(struct prev_params *params, void **param,
diff --git a/drivers/media/video/omap3isp/ispqueue.c b/drivers/media/video/omap3isp/ispqueue.c
index 8fddc58..c91e56a 100644
--- a/drivers/media/video/omap3isp/ispqueue.c
+++ b/drivers/media/video/omap3isp/ispqueue.c
@@ -408,8 +408,8 @@ done:
  * isp_video_buffer_prepare_vm_flags - Get VMA flags for a userspace address
  *
  * This function locates the VMAs for the buffer's userspace address and checks
- * that their flags match. The onlflag that we need to care for at the moment is
- * VM_PFNMAP.
+ * that their flags match. The only flag that we need to care for at the moment
+ * is VM_PFNMAP.
  *
  * The buffer vm_flags field is set to the first VMA flags.
  *
-- 
1.7.3.4


  parent reply	other threads:[~2011-04-05  7:57 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-05  7:57 [PATCH 00/14] OMAP3 ISP and media controller patches for 2.6.39 Laurent Pinchart
2011-04-05  7:57 ` [PATCH 01/14] media: Use correct ioctl name in MEDIA_IOC_SETUP_LINK documentation Laurent Pinchart
2011-04-05  7:57 ` [PATCH 02/14] omap3isp: resizer: Center the crop rectangle Laurent Pinchart
2011-04-05  7:57 ` [PATCH 03/14] omap3isp: resizer: Use 4-tap mode equations when the ratio is <= 512 Laurent Pinchart
2011-04-05  7:57 ` [PATCH 04/14] omap3isp: resizer: Improved resizer rsz factor formula Laurent Pinchart
2011-04-05  7:57 ` Laurent Pinchart [this message]
2011-04-05  7:57 ` [PATCH 06/14] media: Properly handle link flags in link setup, link notify callback Laurent Pinchart
2011-04-05  7:57 ` [PATCH 07/14] omap3isp: stat: update struct ispstat_generic_config's comments Laurent Pinchart
2011-04-05  7:57 ` [PATCH 08/14] omap3isp: isp: Reset the ISP when the pipeline can't be stopped Laurent Pinchart
2011-04-05  7:57 ` [PATCH 09/14] omap3isp: Use isp xclk defines Laurent Pinchart
2011-04-05  7:57 ` [PATCH 10/14] v4l: add V4L2_PIX_FMT_Y12 format Laurent Pinchart
2011-04-05  7:57 ` [PATCH 11/14] media: add missing 8-bit bayer formats and Y12 Laurent Pinchart
2011-04-05  7:57 ` [PATCH 12/14] omap3isp: ccdc: support Y10/12, 8-bit bayer fmts Laurent Pinchart
2011-04-05  7:57 ` [PATCH 13/14] omap3isp: lane shifter support Laurent Pinchart
2011-04-05  7:57 ` [PATCH 14/14] omap3isp: Don't increment node entity use count when poweron fails Laurent Pinchart

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=1301990256-6963-6-git-send-email-laurent.pinchart@ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    /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.