All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] staging: hp100: rearrange line exceeding 80 characters
@ 2020-03-22  1:16 Gokce Kuler
  2020-03-22  7:58 ` [Outreachy kernel] " Julia Lawall
  0 siblings, 1 reply; 2+ messages in thread
From: Gokce Kuler @ 2020-03-22  1:16 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: gregkh

moved to the bottom line after && operator for it exceeds 80 character

Signed-off-by: Gokce Kuler <gokcekuler@gmail.com>
---
 drivers/staging/hp/hp100.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/hp/hp100.c b/drivers/staging/hp/hp100.c
index 61b891d..8aadb5b 100644
--- a/drivers/staging/hp/hp100.c
+++ b/drivers/staging/hp/hp100.c
@@ -1407,7 +1407,8 @@ static void hp100_BM_shutdown(struct net_device *dev)
 			for (time = 0; time < 10000; time++) {
 				/* RX_PDL: PDLs not executed. */
 				/* RX_PKT_CNT: RX'd packets on card. */
-				if ((hp100_inb(RX_PDL) == 0) && (hp100_inb(RX_PKT_CNT) == 0))
+				if ((hp100_inb(RX_PDL) == 0) &&
+			       	    (hp100_inb(RX_PKT_CNT) == 0))
 					break;
 			}
 
-- 
2.7.4



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

end of thread, other threads:[~2020-03-22  7:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-22  1:16 [PATCH] staging: hp100: rearrange line exceeding 80 characters Gokce Kuler
2020-03-22  7:58 ` [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.