char/tpm/tpm_i2c_stm_st33: remove dead assignment in tpm_st33_i2c_probe
authorPeter Huewe <peterhuewe@gmx.de>
Tue, 29 Jan 2013 21:02:01 +0000 (22:02 +0100)
committerKent Yoder <key@linux.vnet.ibm.com>
Tue, 5 Feb 2013 15:38:25 +0000 (09:38 -0600)
Err is never read before it is assigned again -> remove the dead
assigment.
Found with clang static analyzer

Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Kent Yoder <key@linux.vnet.ibm.com>
drivers/char/tpm/tpm_i2c_stm_st33.c

index e3d1887e5be4755e1500035f62375b6ebeeac049..b14c4b59958d9859f34a45acd5b736428e09a172 100644 (file)
@@ -642,8 +642,6 @@ tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
        struct tpm_chip *chip;
        struct st33zp24_platform_data *platform_data;
 
-       err = 0;
-
        if (client == NULL) {
                pr_info("%s: i2c client is NULL. Device not accessible.\n",
                        __func__);
This page took 0.025234 seconds and 5 git commands to generate.