diff mbox series

[v3] staging: media: zoran: remove and move statement in next line with '*'

Message ID YHA9IdZVRr4kbVJ0@kali
State New
Headers show
Series [v3] staging: media: zoran: remove and move statement in next line with '*' | expand

Commit Message

Mitali Borkar April 9, 2021, 11:40 a.m. UTC
Removed and moved statement in line in long(multi-line) comments and
added '*' before it to meet linux kernel coding style for long (multi-line) comments

Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
---

Changes from v2:- made style changes in code according to linux kernel
coding style for long comments.

drivers/staging/media/zoran/zr36050.c | 26 +++++++++++++++++---------
 1 file changed, 17 insertions(+), 9 deletions(-)

Comments

Hans Verkuil April 13, 2021, 2:28 p.m. UTC | #1
On 09/04/2021 13:40, Mitali Borkar wrote:
> Removed and moved statement in line in long(multi-line) comments and

> added '*' before it to meet linux kernel coding style for long (multi-line) comments

> 

> Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>

> ---

> 

> Changes from v2:- made style changes in code according to linux kernel

> coding style for long comments.

> 

> drivers/staging/media/zoran/zr36050.c | 26 +++++++++++++++++---------

>  1 file changed, 17 insertions(+), 9 deletions(-)


This too sits on top of other commits from your own private branch, so
it won't apply against the mainline code.

Regards,

	Hans

> 

> diff --git a/drivers/staging/media/zoran/zr36050.c b/drivers/staging/media/zoran/zr36050.c

> index 703064009c6b..b89afa239b0c 100644

> --- a/drivers/staging/media/zoran/zr36050.c

> +++ b/drivers/staging/media/zoran/zr36050.c

> @@ -24,7 +24,8 @@

>  /* codec io API */

>  #include "videocodec.h"

>  

> -/* it doesn't make sense to have more than 20 or so,

> +/*

> + * it doesn't make sense to have more than 20 or so,

>   * just to prevent some unwanted loops

>   */

>  #define MAX_CODECS 20

> @@ -311,7 +312,8 @@ static const char zr36050_decimation_v[8] = { 1, 1, 1, 0, 0, 0, 0, 0 };

>  

>  /* ------------------------------------------------------------------------- */

>  

> -/* SOF (start of frame) segment depends on width, height and sampling ratio

> +/*

> + * SOF (start of frame) segment depends on width, height and sampling ratio

>   *			 of each color component

>   */

>  

> @@ -343,7 +345,8 @@ static int zr36050_set_sof(struct zr36050 *ptr)

>  

>  /* ------------------------------------------------------------------------- */

>  

> -/* SOS (start of scan) segment depends on the used scan components

> +/*

> + * SOS (start of scan) segment depends on the used scan components

>   *			of each color component

>   */

>  

> @@ -432,7 +435,8 @@ static void zr36050_init(struct zr36050 *ptr)

>  		sum += zr36050_set_sos(ptr);

>  		sum += zr36050_set_dri(ptr);

>  

> -		/* setup the fixed jpeg tables - maybe variable, though -

> +		/*

> +		 * setup the fixed jpeg tables - maybe variable, though -

>  		 * (see table init section above)

>  		 */

>  		dprintk(3, "%s: write DQT, DHT, APP\n", ptr->name);

> @@ -551,8 +555,9 @@ static void zr36050_init(struct zr36050 *ptr)

>   * =========================================================================

>   */

>  

> -/* set compression/expansion mode and launches codec -

> - *  this should be the last call from the master before starting processing

> +/*

> + * set compression/expansion mode and launches codec -

> + * this should be the last call from the master before starting processing

>   */

>  

>  static int zr36050_set_mode(struct videocodec *codec, int mode)

> @@ -581,7 +586,8 @@ static int zr36050_set_video(struct videocodec *codec, const struct tvnorm *norm

>  		ptr->name, norm->h_start, norm->v_start,

>  		cap->x, cap->y, cap->width, cap->height,

>  		cap->decimation, cap->quality);

> -	/* if () return -EINVAL;

> +	/*

> +	 * if () return -EINVAL;

>  	 * trust the master driver that it knows what it does - so

>  	 * we allow invalid startx/y and norm for now ...

>  	 */

> @@ -603,7 +609,8 @@ static int zr36050_set_video(struct videocodec *codec, const struct tvnorm *norm

>  

>  	ptr->real_code_vol = size >> 3; /* in bytes */

>  

> -	/* Set max_block_vol here (previously in zr36050_init, moved

> +	/*

> +	 * Set max_block_vol here (previously in zr36050_init, moved

>  	 * here for consistency with zr36060 code

>  	 */

>  	zr36050_write(ptr, ZR050_MBCV, ptr->max_block_vol);

> @@ -661,7 +668,8 @@ static int zr36050_control(struct videocodec *codec, int type, int size, void *d

>  		if (size != sizeof(int))

>  			return -EFAULT;

>  		ptr->total_code_vol = *ival;

> -		/* (Kieran Morrissey)

> +		/*

> +		 * (Kieran Morrissey)

>  		 * code copied from zr36060.c to ensure proper bitrate

>  		 */

>  		ptr->real_code_vol = (ptr->total_code_vol * 6) >> 3;

>
diff mbox series

Patch

diff --git a/drivers/staging/media/zoran/zr36050.c b/drivers/staging/media/zoran/zr36050.c
index 703064009c6b..b89afa239b0c 100644
--- a/drivers/staging/media/zoran/zr36050.c
+++ b/drivers/staging/media/zoran/zr36050.c
@@ -24,7 +24,8 @@ 
 /* codec io API */
 #include "videocodec.h"
 
-/* it doesn't make sense to have more than 20 or so,
+/*
+ * it doesn't make sense to have more than 20 or so,
  * just to prevent some unwanted loops
  */
 #define MAX_CODECS 20
@@ -311,7 +312,8 @@  static const char zr36050_decimation_v[8] = { 1, 1, 1, 0, 0, 0, 0, 0 };
 
 /* ------------------------------------------------------------------------- */
 
-/* SOF (start of frame) segment depends on width, height and sampling ratio
+/*
+ * SOF (start of frame) segment depends on width, height and sampling ratio
  *			 of each color component
  */
 
@@ -343,7 +345,8 @@  static int zr36050_set_sof(struct zr36050 *ptr)
 
 /* ------------------------------------------------------------------------- */
 
-/* SOS (start of scan) segment depends on the used scan components
+/*
+ * SOS (start of scan) segment depends on the used scan components
  *			of each color component
  */
 
@@ -432,7 +435,8 @@  static void zr36050_init(struct zr36050 *ptr)
 		sum += zr36050_set_sos(ptr);
 		sum += zr36050_set_dri(ptr);
 
-		/* setup the fixed jpeg tables - maybe variable, though -
+		/*
+		 * setup the fixed jpeg tables - maybe variable, though -
 		 * (see table init section above)
 		 */
 		dprintk(3, "%s: write DQT, DHT, APP\n", ptr->name);
@@ -551,8 +555,9 @@  static void zr36050_init(struct zr36050 *ptr)
  * =========================================================================
  */
 
-/* set compression/expansion mode and launches codec -
- *  this should be the last call from the master before starting processing
+/*
+ * set compression/expansion mode and launches codec -
+ * this should be the last call from the master before starting processing
  */
 
 static int zr36050_set_mode(struct videocodec *codec, int mode)
@@ -581,7 +586,8 @@  static int zr36050_set_video(struct videocodec *codec, const struct tvnorm *norm
 		ptr->name, norm->h_start, norm->v_start,
 		cap->x, cap->y, cap->width, cap->height,
 		cap->decimation, cap->quality);
-	/* if () return -EINVAL;
+	/*
+	 * if () return -EINVAL;
 	 * trust the master driver that it knows what it does - so
 	 * we allow invalid startx/y and norm for now ...
 	 */
@@ -603,7 +609,8 @@  static int zr36050_set_video(struct videocodec *codec, const struct tvnorm *norm
 
 	ptr->real_code_vol = size >> 3; /* in bytes */
 
-	/* Set max_block_vol here (previously in zr36050_init, moved
+	/*
+	 * Set max_block_vol here (previously in zr36050_init, moved
 	 * here for consistency with zr36060 code
 	 */
 	zr36050_write(ptr, ZR050_MBCV, ptr->max_block_vol);
@@ -661,7 +668,8 @@  static int zr36050_control(struct videocodec *codec, int type, int size, void *d
 		if (size != sizeof(int))
 			return -EFAULT;
 		ptr->total_code_vol = *ival;
-		/* (Kieran Morrissey)
+		/*
+		 * (Kieran Morrissey)
 		 * code copied from zr36060.c to ensure proper bitrate
 		 */
 		ptr->real_code_vol = (ptr->total_code_vol * 6) >> 3;