[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20210301062306.GJ2087@kadam>
Date: Mon, 1 Mar 2021 09:23:06 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: chakravarthikulkarni <chakravarthikulkarni2021@...il.com>
Cc: devel@...verdev.osuosl.org,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-kernel@...r.kernel.org, Fox Chen <foxhlchen@...il.com>
Subject: Re: [PATCH] staging: rtl8723bs: Fixed indentation and coding style
On Sun, Feb 28, 2021 at 03:32:30AM +0530, chakravarthikulkarni wrote:
> @@ -795,14 +795,14 @@ struct RunInThread_param {
>
>
> /*
> -
> -Result:
> -0x00: success
> -0x01: sucess, and check Response.
> -0x02: cmd ignored due to duplicated sequcne number
> -0x03: cmd dropped due to invalid cmd code
> -0x04: reserved.
> -
> +*
> +*Result:
> +*0x00: success
> +*0x01: sucess, and check Response.
> +*0x02: cmd ignored due to duplicated sequcne number
> +*0x03: cmd dropped due to invalid cmd code
> +*0x04: reserved.
> +*
> */
This indenting style is wrong. There should be a spaces around the '*'
character:
/*
* Result:
* 0x00: success
* 0x01: sucess, and check Response.
* 0x02: cmd ignored due to duplicated sequcne number
* 0x03: cmd dropped due to invalid cmd code
* 0x04: reserved.
*/
regards,
dan carpenter
Powered by blists - more mailing lists