Staging: ft1000-pcmcia: fix else close brace style
authorAustin Kerbow <amkerbow@gmail.com>
Fri, 2 Jan 2015 04:29:56 +0000 (20:29 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Jan 2015 23:22:31 +0000 (15:22 -0800)
Fix the following checkpatch.pl errors

ERROR: else should follow close brace '}'
+                       }
+                       else {

ERROR: else should follow close brace '}'
+                       }
+                       else {

ERROR: else should follow close brace '}'
+                       }
+                       else {

ERROR: else should follow close brace '}'
+       }
+       else {

ERROR: else should follow close brace '}'
+                       }
+                       else {

Signed-off-by: Austin Kerbow <amkerbow@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c

index 755beb7228f84698bab11dbd13571cd4770489b5..5e0cdcf26180b9c966e57ef84d82a6110d711a19 100644 (file)
@@ -570,12 +570,12 @@ static void ft1000_hbchk(u_long data)
                pr_debug("hi_ho value = 0x%x\n", tempword);
                /* Let's perform another check if ho is not detected */
                if (tempword != ho) {
-                       if (info->AsicID == ELECTRABUZZ_ID) {
+                       if (info->AsicID == ELECTRABUZZ_ID)
                                tempword = ft1000_read_dpram(dev, FT1000_HI_HO);
-                       }
-                       else {
-                               tempword = ntohs(ft1000_read_dpram_mag_16(dev, FT1000_MAG_HI_HO, FT1000_MAG_HI_HO_INDX));
-                       }
+                       else
+                               tempword = ntohs(ft1000_read_dpram_mag_16(dev,
+                                                       FT1000_MAG_HI_HO,
+                                                       FT1000_MAG_HI_HO_INDX));
                }
                if (tempword != ho) {
                        pr_info("heartbeat failed - no ho detected\n");
@@ -686,19 +686,15 @@ static void ft1000_hbchk(u_long data)
                }
                /* Let's write hi again if fail */
                if (tempword != hi) {
-                       if (info->AsicID == ELECTRABUZZ_ID) {
+                       if (info->AsicID == ELECTRABUZZ_ID)
                                ft1000_write_dpram(dev, FT1000_HI_HO, hi);
-                       }
-                       else {
+                       else
                                ft1000_write_dpram_mag_16(dev, FT1000_MAG_HI_HO, hi_mag, FT1000_MAG_HI_HO_INDX);
-                       }
 
-                       if (info->AsicID == ELECTRABUZZ_ID) {
+                       if (info->AsicID == ELECTRABUZZ_ID)
                                tempword = ft1000_read_dpram(dev, FT1000_HI_HO);
-                       }
-                       else {
+                       else
                                tempword = ntohs(ft1000_read_dpram_mag_16(dev, FT1000_MAG_HI_HO, FT1000_MAG_HI_HO_INDX));
-                       }
 
                }
 
@@ -957,12 +953,11 @@ static void ft1000_proc_drvmsg(struct net_device *dev)
                u16 wrd;
        } convert;
 
-       if (info->AsicID == ELECTRABUZZ_ID) {
+       if (info->AsicID == ELECTRABUZZ_ID)
                tempword = FT1000_DPRAM_RX_BASE+2;
-       }
-       else {
+       else
                tempword = FT1000_DPRAM_MAG_RX_BASE;
-       }
+
        if (ft1000_receive_cmd(dev, &cmdbuffer[0], MAX_CMD_SQSIZE, &tempword)) {
 
                /* Get the message type which is total_len + PSEUDO header + msgtype + message body */
@@ -1039,8 +1034,7 @@ static void ft1000_proc_drvmsg(struct net_device *dev)
                                                info->ConTm = 0;
                                        }
                                }
-                       }
-                       else {
+                       } else {
                                pr_debug("Media is down\n");
                                if (info->mediastate == 1) {
                                        info->mediastate = 0;
This page took 0.02747 seconds and 5 git commands to generate.