summaryrefslogtreecommitdiffstats
path: root/drivers/char/tpm
diff options
context:
space:
mode:
authorPeter Huewe2013-01-29 22:02:01 +0100
committerKent Yoder2013-02-05 16:38:25 +0100
commit07d721688b8464662393f3b3136defbbad52be75 (patch)
tree68cae55bb48af40195fb29465b4034c3b70eb97c /drivers/char/tpm
parentchar/tpm/tpm_i2c_stm_st33: Remove __devexit attribute (diff)
downloadkernel-qcow2-linux-07d721688b8464662393f3b3136defbbad52be75.tar.gz
kernel-qcow2-linux-07d721688b8464662393f3b3136defbbad52be75.tar.xz
kernel-qcow2-linux-07d721688b8464662393f3b3136defbbad52be75.zip
char/tpm/tpm_i2c_stm_st33: remove dead assignment in tpm_st33_i2c_probe
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>
Diffstat (limited to 'drivers/char/tpm')
-rw-r--r--drivers/char/tpm/tpm_i2c_stm_st33.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/char/tpm/tpm_i2c_stm_st33.c b/drivers/char/tpm/tpm_i2c_stm_st33.c
index e3d1887e5be4..b14c4b59958d 100644
--- a/drivers/char/tpm/tpm_i2c_stm_st33.c
+++ b/drivers/char/tpm/tpm_i2c_stm_st33.c
@@ -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__);