All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] staging: dgnc: added spaces before and after "|"
@ 2016-03-13  5:36 Juliana Rodrigues
  0 siblings, 0 replies; only message in thread
From: Juliana Rodrigues @ 2016-03-13  5:36 UTC (permalink / raw)
  To: outreachy-kernel

This patch fixes formatting issues while mantains
80 character per line limit by removing
unnecessary parenthesis.

Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com>
---
Changes in v2:
   - Removed file name from subject line
---
 drivers/staging/dgnc/dgnc_cls.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/dgnc/dgnc_cls.c b/drivers/staging/dgnc/dgnc_cls.c
index 6e1e475..34fbdd8 100644
--- a/drivers/staging/dgnc/dgnc_cls.c
+++ b/drivers/staging/dgnc/dgnc_cls.c
@@ -1168,10 +1168,8 @@ static void cls_uart_init(struct channel_t *ch)
 	/* Clear out UART and FIFO */
 	readb(&ch->ch_cls_uart->txrx);
 
-	writeb((UART_FCR_ENABLE_FIFO |
-		UART_FCR_CLEAR_RCVR  |
-		UART_FCR_CLEAR_XMIT),
-		&ch->ch_cls_uart->isr_fcr);
+	writeb(UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
+	       &ch->ch_cls_uart->isr_fcr);
 	udelay(10);
 
 	ch->ch_flags |= (CH_FIFO_ENABLED | CH_TX_FIFO_EMPTY | CH_TX_FIFO_LWM);
-- 
2.7.2



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-03-13  5:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-13  5:36 [PATCH v2] staging: dgnc: added spaces before and after "|" Juliana Rodrigues

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.