All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: davinci_vpfe: Correct misspelled words
@ 2018-11-06  1:24 Irenge Jules Bashizi
  2018-11-06  6:54 ` [Outreachy kernel] " Julia Lawall
  0 siblings, 1 reply; 2+ messages in thread
From: Irenge Jules Bashizi @ 2018-11-06  1:24 UTC (permalink / raw)
  To: mchehab; +Cc: gregkh, outreachy-kernel, jules.octave, Irenge Jules Bashizi

Correct misspelled words checkpatch complains: parameters and initialize.

Signed-off-by: Irenge Jules Bashizi <jbi.octave@gmail.com>
---
 drivers/staging/media/davinci_vpfe/dm365_isif.c      | 4 ++--
 drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/media/davinci_vpfe/dm365_isif.c b/drivers/staging/media/davinci_vpfe/dm365_isif.c
index 39eb0819ab4e..5172822d7e6f 100644
--- a/drivers/staging/media/davinci_vpfe/dm365_isif.c
+++ b/drivers/staging/media/davinci_vpfe/dm365_isif.c
@@ -678,7 +678,7 @@ static void isif_config_bclamp(struct vpfe_isif_device *isif,
 	val = (bc->bc_mode_color & ISIF_BC_MODE_COLOR_MASK) <<
 		ISIF_BC_MODE_COLOR_SHIFT;
 
-	/* Enable BC and horizontal clamp calculation paramaters */
+	/* Enable BC and horizontal clamp calculation parameters */
 	val = val | 1 | ((bc->horz.mode & ISIF_HORZ_BC_MODE_MASK) <<
 	      ISIF_HORZ_BC_MODE_SHIFT);
 
@@ -715,7 +715,7 @@ static void isif_config_bclamp(struct vpfe_isif_device *isif,
 		isif_write(isif->isif_cfg.base_addr, val, CLHWIN2);
 	}
 
-	/* vertical clamp calculation paramaters */
+	/* vertical clamp calculation parameters */
 	/* OB H Valid */
 	val = bc->vert.ob_h_sz_calc & ISIF_VERT_BC_OB_H_SZ_MASK;
 
diff --git a/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c b/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
index bdf6ee5ad96c..257bd96bf730 100644
--- a/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
+++ b/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
@@ -531,7 +531,7 @@ static void vpfe_cleanup_modules(struct vpfe_device *vpfe_dev,
  * @vpfe_dev - ptr to vpfe capture device
  * @pdev - pointer to platform device
  *
- * intialize all v4l2 subdevs and media entities
+ * initialize all v4l2 subdevs and media entities
  */
 static int vpfe_initialize_modules(struct vpfe_device *vpfe_dev,
 				   struct platform_device *pdev)
-- 
2.17.2



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [Outreachy kernel] [PATCH] staging: davinci_vpfe: Correct misspelled words
  2018-11-06  1:24 [PATCH] staging: davinci_vpfe: Correct misspelled words Irenge Jules Bashizi
@ 2018-11-06  6:54 ` Julia Lawall
  0 siblings, 0 replies; 2+ messages in thread
From: Julia Lawall @ 2018-11-06  6:54 UTC (permalink / raw)
  To: Irenge Jules Bashizi; +Cc: mchehab, gregkh, outreachy-kernel, jules.octave



On Tue, 6 Nov 2018, Irenge Jules Bashizi wrote:

> Correct misspelled words checkpatch complains: parameters and initialize.

Why did you send the same thing twice?  It's actually very confusing for
the recipient.  One has no way to know if one corrects the other and if so
if they have arrived in the right order.  If you feel like sending exactly
the same thing again, perhaps because of a mailer issue, put RESEND after
patch and explain what is going on under the ---.  If you have made a
change, but v2 after PATCH and explain what changed under the ---.

julia

>
> Signed-off-by: Irenge Jules Bashizi <jbi.octave@gmail.com>
> ---
>  drivers/staging/media/davinci_vpfe/dm365_isif.c      | 4 ++--
>  drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/staging/media/davinci_vpfe/dm365_isif.c b/drivers/staging/media/davinci_vpfe/dm365_isif.c
> index 39eb0819ab4e..5172822d7e6f 100644
> --- a/drivers/staging/media/davinci_vpfe/dm365_isif.c
> +++ b/drivers/staging/media/davinci_vpfe/dm365_isif.c
> @@ -678,7 +678,7 @@ static void isif_config_bclamp(struct vpfe_isif_device *isif,
>  	val = (bc->bc_mode_color & ISIF_BC_MODE_COLOR_MASK) <<
>  		ISIF_BC_MODE_COLOR_SHIFT;
>
> -	/* Enable BC and horizontal clamp calculation paramaters */
> +	/* Enable BC and horizontal clamp calculation parameters */
>  	val = val | 1 | ((bc->horz.mode & ISIF_HORZ_BC_MODE_MASK) <<
>  	      ISIF_HORZ_BC_MODE_SHIFT);
>
> @@ -715,7 +715,7 @@ static void isif_config_bclamp(struct vpfe_isif_device *isif,
>  		isif_write(isif->isif_cfg.base_addr, val, CLHWIN2);
>  	}
>
> -	/* vertical clamp calculation paramaters */
> +	/* vertical clamp calculation parameters */
>  	/* OB H Valid */
>  	val = bc->vert.ob_h_sz_calc & ISIF_VERT_BC_OB_H_SZ_MASK;
>
> diff --git a/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c b/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
> index bdf6ee5ad96c..257bd96bf730 100644
> --- a/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
> +++ b/drivers/staging/media/davinci_vpfe/vpfe_mc_capture.c
> @@ -531,7 +531,7 @@ static void vpfe_cleanup_modules(struct vpfe_device *vpfe_dev,
>   * @vpfe_dev - ptr to vpfe capture device
>   * @pdev - pointer to platform device
>   *
> - * intialize all v4l2 subdevs and media entities
> + * initialize all v4l2 subdevs and media entities
>   */
>  static int vpfe_initialize_modules(struct vpfe_device *vpfe_dev,
>  				   struct platform_device *pdev)
> --
> 2.17.2
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20181106012426.24099-1-jbi.octave%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-06  6:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-06  1:24 [PATCH] staging: davinci_vpfe: Correct misspelled words Irenge Jules Bashizi
2018-11-06  6:54 ` [Outreachy kernel] " Julia Lawall

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.