Skip to content

Commit

Permalink
staging: et131x: Fix brace coding style issues.
Browse files Browse the repository at this point in the history
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@wanadoo.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Michael Tate authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 7264fcd commit b4c84c2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/staging/et131x/et131x_isr.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,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;

Expand Down

0 comments on commit b4c84c2

Please sign in to comment.