diff options
author | Benjamin Tissoires <benjamin.tissoires@gmail.com> | 2012-12-04 10:27:52 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-12-05 05:28:48 -0500 |
commit | 6233362852785dbaffe1896d62ec834faf53fb57 (patch) | |
tree | a196da3c24e664653a01c65f1b33b0f0f5630cfe /drivers/hid | |
parent | c737bcf92ea206d3b5d351890f1ade9e12ad4cbe (diff) |
HID: i2c-hid: remove unneeded test in i2c_hid_remove
ihid can not be null, so there are no reasons to test it.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/i2c-hid/i2c-hid.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/hid/i2c-hid/i2c-hid.c b/drivers/hid/i2c-hid/i2c-hid.c index c823a16f35ac..3bbd70e839f2 100644 --- a/drivers/hid/i2c-hid/i2c-hid.c +++ b/drivers/hid/i2c-hid/i2c-hid.c | |||
@@ -901,9 +901,6 @@ static int __devexit i2c_hid_remove(struct i2c_client *client) | |||
901 | struct i2c_hid *ihid = i2c_get_clientdata(client); | 901 | struct i2c_hid *ihid = i2c_get_clientdata(client); |
902 | struct hid_device *hid; | 902 | struct hid_device *hid; |
903 | 903 | ||
904 | if (WARN_ON(!ihid)) | ||
905 | return -1; | ||
906 | |||
907 | hid = ihid->hid; | 904 | hid = ihid->hid; |
908 | hid_destroy_device(hid); | 905 | hid_destroy_device(hid); |
909 | 906 | ||