From: Benjamin Tissoires Date: Tue, 4 Dec 2012 15:27:52 +0000 (+0100) Subject: HID: i2c-hid: remove unneeded test in i2c_hid_remove X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6233362852785dbaffe1896d62ec834faf53fb57;p=linux-beck.git 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 Signed-off-by: Jiri Kosina --- 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) struct i2c_hid *ihid = i2c_get_clientdata(client); struct hid_device *hid; - if (WARN_ON(!ihid)) - return -1; - hid = ihid->hid; hid_destroy_device(hid);