[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1267873437-10245-1-git-send-email-michael.tate@wanadoo.fr>
Date: Sat, 6 Mar 2010 15:03:57 +0400
From: Michael Tate <michael.tate@...adoo.fr>
To: gregkh@...e.de, alan@...ux.intel.com, o.hartmann@...ovital.com
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Michael Tate <michael.tate@...adoo.fr>
Subject: [PATCH 2/2] staging: et131x: Fix brace coding style issues.
This revised patch fixes 2 brace coding style issues reported by checkpatch.pl
One warning line > 80 chars not resolved on maintainers advice.
Signed-off-by: Michael Tate <michael.tate@...adoo.fr>
---
drivers/staging/et131x/et131x_isr.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/et131x/et131x_isr.c b/drivers/staging/et131x/et131x_isr.c
index f6d452d..336c192 100644
--- a/drivers/staging/et131x/et131x_isr.c
+++ b/drivers/staging/et131x/et131x_isr.c
@@ -238,14 +238,12 @@ void et131x_isr_handler(struct work_struct *work)
* exit.
*/
/* Handle all the completed Transmit interrupts */
- if (status & ET_INTR_TXDMA_ISR) {
+ if (status & ET_INTR_TXDMA_ISR)
et131x_handle_send_interrupt(etdev);
- }
/* Handle all the completed Receives interrupts */
- if (status & ET_INTR_RXDMA_XFR_DONE) {
+ if (status & ET_INTR_RXDMA_XFR_DONE)
et131x_handle_recv_interrupt(etdev);
- }
status &= 0xffffffd7;
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists