Fix two occurrences of the checkpatch check:

CHECK: Logical continuations should be on the previous line

Signed-off-by: Mark Einon <mark.ei...@gmail.com>
---
 drivers/staging/et131x/et131x.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/et131x/et131x.c b/drivers/staging/et131x/et131x.c
index d5c19f5..17a3a36 100644
--- a/drivers/staging/et131x/et131x.c
+++ b/drivers/staging/et131x/et131x.c
@@ -608,8 +608,8 @@ static int eeprom_write(struct et131x_adapter *adapter, u32 
addr, u8 data)
                 * an error has occurred.Don't break here if we are revision
                 * 1, this is so we do a blind write for load bug.
                 */
-               if ((status & LBCIF_STATUS_GENERAL_ERROR)
-                       && adapter->pdev->revision == 0)
+               if ((status & LBCIF_STATUS_GENERAL_ERROR) &&
+                   adapter->pdev->revision == 0)
                        break;
 
                /* Check bit 2 of the LBCIF Status Register.  If equal to 1 an
@@ -2976,8 +2976,8 @@ static void et131x_handle_send_pkts(struct et131x_adapter 
*adapter)
                tcb = tx_ring->send_head;
        }
        while (tcb &&
-              !((serviced ^ tcb->index) & ET_DMA10_WRAP)
-              && index > (tcb->index & ET_DMA10_MASK)) {
+              !((serviced ^ tcb->index) & ET_DMA10_WRAP) &&
+              index > (tcb->index & ET_DMA10_MASK)) {
                tx_ring->used--;
                tx_ring->send_head = tcb->next;
                if (tcb->next == NULL)
-- 
2.1.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to