Use semicolons and braces.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
     outb_p(E8390_RREAD+E8390_START, nic_base + AXNET_CMD);
 
     insw(nic_base + AXNET_DATAPORT,buf,count>>1);
-    if (count & 0x01)
-       buf[count-1] = inb(nic_base + AXNET_DATAPORT), xfer_count++;
+    if (count & 0x01) {
+       buf[count-1] = inb(nic_base + AXNET_DATAPORT);
+       xfer_count++;
+    }
 
 }
 
                        ei_local->txing = 1;
                        NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6);
                        netif_trans_update(dev);
-                       ei_local->tx2 = -1,
+                       ei_local->tx2 = -1;
                        ei_local->lasttx = 2;
+               } else {
+                       ei_local->lasttx = 20;
+                       ei_local->txing = 0;
                }
-               else ei_local->lasttx = 20, ei_local->txing = 0;        
        }
        else if (ei_local->tx2 < 0) 
        {
                        netif_trans_update(dev);
                        ei_local->tx1 = -1;
                        ei_local->lasttx = 1;
+               } else {
+                       ei_local->lasttx = 10;
+                       ei_local->txing = 0;
                }
-               else
-                       ei_local->lasttx = 10, ei_local->txing = 0;
        }
 //     else
 //             netdev_warn(dev, "unexpected TX-done interrupt, lasttx=%d\n",
 
                        ei_local->txing = 1;
                        NS8390_trigger_send(dev, ei_local->tx2, ei_local->tx_start_page + 6);
                        netif_trans_update(dev);
-                       ei_local->tx2 = -1,
+                       ei_local->tx2 = -1;
                        ei_local->lasttx = 2;
-               } else
-                       ei_local->lasttx = 20, ei_local->txing = 0;
+               } else {
+                       ei_local->lasttx = 20;
+                       ei_local->txing = 0;
+               }
        } else if (ei_local->tx2 < 0) {
                if (ei_local->lasttx != 2  &&  ei_local->lasttx != -2)
                        pr_err("%s: bogus last_tx_buffer %d, tx2=%d\n",
                        netif_trans_update(dev);
                        ei_local->tx1 = -1;
                        ei_local->lasttx = 1;
-               } else
-                       ei_local->lasttx = 10, ei_local->txing = 0;
+               } else {
+                       ei_local->lasttx = 10;
+                       ei_local->txing = 0;
+               }
        } /* else
                netdev_warn(dev, "unexpected TX-done interrupt, lasttx=%d\n",
                            ei_local->lasttx);
 
     outb_p(E8390_RREAD+E8390_START, nic_base + PCNET_CMD);
 
     insw(nic_base + PCNET_DATAPORT,buf,count>>1);
-    if (count & 0x01)
-       buf[count-1] = inb(nic_base + PCNET_DATAPORT), xfer_count++;
+    if (count & 0x01) {
+       buf[count-1] = inb(nic_base + PCNET_DATAPORT);
+       xfer_count++;
+    }
 
     /* This was for the ALPHA version only, but enough people have been
        encountering problems that it is still here. */