staging: wilc1000: remove the use of goto label in spi_cmd_complete()
authorAjay Singh <ajay.kathat@microchip.com>
Mon, 23 Apr 2018 16:33:27 +0000 (22:03 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Apr 2018 13:54:16 +0000 (15:54 +0200)
In spi_cmd_complete() remove the use of goto label '_error_'. Changes
were done to avoid the use of '_' in label name.

Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_spi.c

index 6b392c9..3e3c774 100644 (file)
@@ -527,8 +527,7 @@ static int spi_cmd_complete(struct wilc *wilc, u8 cmd, u32 adr, u8 *b, u32 sz,
                        if (wilc_spi_rx(wilc, &b[ix], nbytes)) {
                                dev_err(&spi->dev,
                                        "Failed block read, bus err\n");
-                               result = N_FAIL;
-                               goto _error_;
+                               return N_FAIL;
                        }
 
                        /*
@@ -537,8 +536,7 @@ static int spi_cmd_complete(struct wilc *wilc, u8 cmd, u32 adr, u8 *b, u32 sz,
                        if (!g_spi.crc_off && wilc_spi_rx(wilc, crc, 2)) {
                                dev_err(&spi->dev,
                                        "Failed block crc read, bus err\n");
-                               result = N_FAIL;
-                               goto _error_;
+                               return N_FAIL;
                        }
 
                        ix += nbytes;
@@ -604,7 +602,6 @@ static int spi_cmd_complete(struct wilc *wilc, u8 cmd, u32 adr, u8 *b, u32 sz,
                        sz -= nbytes;
                }
        }
-_error_:
        return result;
 }