All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging/emxx_udc: Fix styling issues
@ 2017-02-02 12:56 Zhengyi Shen
  2017-02-03  9:52 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 2+ messages in thread
From: Zhengyi Shen @ 2017-02-02 12:56 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Walt Feasel, Afonso Bordado, Bhumika Goyal, Arnd Bergmann,
	Anjali Menon, Dilek Uzulmez, Gargi Sharma, devel, linux-kernel

Fix line over 80 characters.
Statements longer than 80 columns were broken into sensible chunks.
Descendants in four different palces were in the same uniform style.

Signed-off-by: Zhengyi Shen <shenzhengyi@gmail.com>
---
 drivers/staging/emxx_udc/emxx_udc.c | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
index 77b242e..e771aee 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -902,7 +902,8 @@ static int _nbu2ss_epn_out_pio(
 		/* Copy of every four bytes */
 		for (i = 0; i < iWordLength; i++) {
 			pBuf32->dw =
-			_nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
+				_nbu2ss_readl(
+					&preg->EP_REGS[ep->epnum - 1].EP_READ);
 			pBuf32++;
 		}
 		result = iWordLength * sizeof(u32);
@@ -912,7 +913,8 @@ static int _nbu2ss_epn_out_pio(
 	if (data > 0) {
 		/*---------------------------------------------------------*/
 		/* Copy of fraction byte */
-		Temp32.dw = _nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
+		Temp32.dw =
+			_nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
 		for (i = 0 ; i < data ; i++)
 			pBuf32->byte.DATA[i] = Temp32.byte.DATA[i];
 		result += data;
@@ -977,8 +979,8 @@ static int _nbu2ss_epn_out_transfer(
 
 	/*-------------------------------------------------------------*/
 	/* Receive Length */
-	iRecvLength
-		= _nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT) & EPn_LDATA;
+	iRecvLength =
+		_nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT) & EPn_LDATA;
 
 	if (iRecvLength != 0) {
 		result = _nbu2ss_epn_out_data(udc, ep, req, iRecvLength);
@@ -2651,7 +2653,8 @@ static int nbu2ss_ep_queue(
 	}
 
 	req = container_of(_req, struct nbu2ss_req, req);
-	if (unlikely(!_req->complete || !_req->buf || !list_empty(&req->queue))) {
+	if (unlikely(!_req->complete || !_req->buf
+			|| !list_empty(&req->queue))) {
 		if (!_req->complete)
 			pr_err("udc: %s --- !_req->complete\n", __func__);
 
-- 
2.9.3

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

* Re: [PATCH] staging/emxx_udc: Fix styling issues
  2017-02-02 12:56 [PATCH] staging/emxx_udc: Fix styling issues Zhengyi Shen
@ 2017-02-03  9:52 ` Greg Kroah-Hartman
  0 siblings, 0 replies; 2+ messages in thread
From: Greg Kroah-Hartman @ 2017-02-03  9:52 UTC (permalink / raw)
  To: Zhengyi Shen
  Cc: Walt Feasel, Afonso Bordado, Bhumika Goyal, Arnd Bergmann,
	Anjali Menon, Dilek Uzulmez, Gargi Sharma, devel, linux-kernel

On Thu, Feb 02, 2017 at 08:56:54PM +0800, Zhengyi Shen wrote:
> Fix line over 80 characters.
> Statements longer than 80 columns were broken into sensible chunks.
> Descendants in four different palces were in the same uniform style.
> 
> Signed-off-by: Zhengyi Shen <shenzhengyi@gmail.com>
> ---
>  drivers/staging/emxx_udc/emxx_udc.c | 13 ++++++++-----
>  1 file changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
> index 77b242e..e771aee 100644
> --- a/drivers/staging/emxx_udc/emxx_udc.c
> +++ b/drivers/staging/emxx_udc/emxx_udc.c
> @@ -902,7 +902,8 @@ static int _nbu2ss_epn_out_pio(
>  		/* Copy of every four bytes */
>  		for (i = 0; i < iWordLength; i++) {
>  			pBuf32->dw =
> -			_nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
> +				_nbu2ss_readl(
> +					&preg->EP_REGS[ep->epnum - 1].EP_READ);

That's horrid, and not any better than the original code :(

>  			pBuf32++;
>  		}
>  		result = iWordLength * sizeof(u32);
> @@ -912,7 +913,8 @@ static int _nbu2ss_epn_out_pio(
>  	if (data > 0) {
>  		/*---------------------------------------------------------*/
>  		/* Copy of fraction byte */
> -		Temp32.dw = _nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);
> +		Temp32.dw =
> +			_nbu2ss_readl(&preg->EP_REGS[ep->epnum - 1].EP_READ);

Same here, please leave the original as-is.

>  		for (i = 0 ; i < data ; i++)
>  			pBuf32->byte.DATA[i] = Temp32.byte.DATA[i];
>  		result += data;
> @@ -977,8 +979,8 @@ static int _nbu2ss_epn_out_transfer(
>  
>  	/*-------------------------------------------------------------*/
>  	/* Receive Length */
> -	iRecvLength
> -		= _nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT) & EPn_LDATA;
> +	iRecvLength =
> +		_nbu2ss_readl(&preg->EP_REGS[num].EP_LEN_DCNT) & EPn_LDATA;
>  
>  	if (iRecvLength != 0) {
>  		result = _nbu2ss_epn_out_data(udc, ep, req, iRecvLength);
> @@ -2651,7 +2653,8 @@ static int nbu2ss_ep_queue(
>  	}
>  
>  	req = container_of(_req, struct nbu2ss_req, req);
> -	if (unlikely(!_req->complete || !_req->buf || !list_empty(&req->queue))) {
> +	if (unlikely(!_req->complete || !_req->buf
> +			|| !list_empty(&req->queue))) {

odd indentation :(

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

end of thread, other threads:[~2017-02-03  9:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-02 12:56 [PATCH] staging/emxx_udc: Fix styling issues Zhengyi Shen
2017-02-03  9:52 ` Greg Kroah-Hartman

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.