diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-05-04 12:45:38 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-05-13 10:29:33 -0700 |
commit | 22ffc3e42aa6a656192a45c7364fbb2de3214d93 (patch) | |
tree | ba13e6c566a7f168599a8c25a07bb7748a6f6017 /drivers/input | |
parent | 48853389f206b689260ddfd3006816779ca7a52a (diff) | |
download | linux-22ffc3e42aa6a656192a45c7364fbb2de3214d93.tar.bz2 |
Input: sx8654 - fix memory allocation check
We have been testing wrong variable when trying to make sure that input
allocation succeeded.
Reported by Coverity (CID 1295918).
Acked-by: Sébastien Szymanski <sebastien.szymanski@armadeus.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/sx8654.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/sx8654.c b/drivers/input/touchscreen/sx8654.c index aecb9ad2e701..642f4a53de50 100644 --- a/drivers/input/touchscreen/sx8654.c +++ b/drivers/input/touchscreen/sx8654.c @@ -187,7 +187,7 @@ static int sx8654_probe(struct i2c_client *client, return -ENOMEM; input = devm_input_allocate_device(&client->dev); - if (!sx8654) + if (!input) return -ENOMEM; input->name = "SX8654 I2C Touchscreen"; |