staging: et131x: Use braces on all arms of if/else statements
authorMark Einon <mark.einon@gmail.com>
Sun, 14 Sep 2014 15:59:07 +0000 (16:59 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2014 23:05:19 +0000 (16:05 -0700)
In some places in et131x.c, one arm of am if/else statement has braces
and the other not - put braces on both arms where this happens.

Signed-off-by: Mark Einon <mark.einon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/et131x/et131x.c

index 12bde766e2c5ea26e2e2f652c4f437b1dcfbfccd..3f402476f4c23526a9062ac3355ae3f7337308ed 100644 (file)
@@ -2742,8 +2742,9 @@ static int nic_send_packet(struct et131x_adapter *adapter, struct tcb *tcb)
                        tcb->index = NUM_DESC_PER_RING_TX - 1;
                else
                        tcb->index = ET_DMA10_WRAP|(NUM_DESC_PER_RING_TX - 1);
-       } else
+       } else {
                tcb->index = tx_ring->send_idx - 1;
+       }
 
        spin_lock(&adapter->tcb_send_qlock);
 
@@ -4021,8 +4022,9 @@ static int et131x_set_packet_filter(struct et131x_adapter *adapter)
                if (filter & ET131X_PACKET_TYPE_BROADCAST) {
                        pf_ctrl |= 1;   /* Broadcast filter bit */
                        ctrl &= ~0x04;
-               } else
+               } else {
                        pf_ctrl &= ~1;
+               }
 
                /* Setup the receive mac configuration registers - Packet
                 * Filter control + the enable / disable for packet filter
@@ -4070,8 +4072,9 @@ static void et131x_multicast(struct net_device *netdev)
        if (netdev_mc_count(netdev) < 1) {
                adapter->packet_filter &= ~ET131X_PACKET_TYPE_ALL_MULTICAST;
                adapter->packet_filter &= ~ET131X_PACKET_TYPE_MULTICAST;
-       } else
+       } else {
                adapter->packet_filter |= ET131X_PACKET_TYPE_MULTICAST;
+       }
 
        /* Set values in the private adapter struct */
        i = 0;
This page took 0.030015 seconds and 5 git commands to generate.