[media] si2157: change firmware download error handling
authorAntti Palosaari <crope@iki.fi>
Sat, 6 Dec 2014 17:51:17 +0000 (14:51 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Thu, 29 Jan 2015 20:48:39 +0000 (18:48 -0200)
Rename firmare download error path goto label. Remove firmware NULL
set as NULL value is not needed anymore, due to recent change which
started using goto labels for firmware error handling.

Cc: Olli Salonen <olli.salonen@iki.fi>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/tuners/si2157.c

index 88afb2adfdd15083cc66778e603a75b51f30b588..6174c8eaa8b40e5c901cd5948368ce0871ed1f0c 100644 (file)
@@ -81,7 +81,7 @@ static int si2157_init(struct dvb_frontend *fe)
        struct si2157_dev *dev = i2c_get_clientdata(client);
        int ret, len, remaining;
        struct si2157_cmd cmd;
-       const struct firmware *fw = NULL;
+       const struct firmware *fw;
        u8 *fw_file;
        unsigned int chip_id;
 
@@ -154,7 +154,7 @@ static int si2157_init(struct dvb_frontend *fe)
                dev_err(&client->dev, "firmware file '%s' is invalid\n",
                                fw_file);
                ret = -EINVAL;
-               goto fw_release_exit;
+               goto err_release_firmware;
        }
 
        dev_info(&client->dev, "downloading firmware from file '%s'\n",
@@ -169,12 +169,11 @@ static int si2157_init(struct dvb_frontend *fe)
                if (ret) {
                        dev_err(&client->dev, "firmware download failed %d\n",
                                        ret);
-                       goto fw_release_exit;
+                       goto err_release_firmware;
                }
        }
 
        release_firmware(fw);
-       fw = NULL;
 
 skip_fw_download:
        /* reboot the tuner with new firmware? */
@@ -191,7 +190,7 @@ warm:
        dev->active = true;
        return 0;
 
-fw_release_exit:
+err_release_firmware:
        release_firmware(fw);
 err:
        dev_dbg(&client->dev, "failed=%d\n", ret);