]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - drivers/staging/et131x/et131x_isr.c
staging: et131x: Fix brace coding style issues.
[mv-sheeva.git] / drivers / staging / et131x / et131x_isr.c
index 8b6e0b7ec5688a9e4a2527e49c965962d50c358d..36f68fe3e8c913399883e97ed6f13742458effa1 100644 (file)
@@ -66,7 +66,6 @@
 
 #include <linux/sched.h>
 #include <linux/ptrace.h>
-#include <linux/slab.h>
 #include <linux/ctype.h>
 #include <linux/string.h>
 #include <linux/timer.h>
@@ -254,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;