diff options
author | 2020-12-16 11:42:30 +0100 | |
---|---|---|
committer | 2020-12-16 11:42:30 +0100 | |
commit | 47cdd7f139dc3e896a627e8c0e98d0501555a889 (patch) | |
tree | 58735bb21979e0aac5db286f633abe8576e483ac | |
parent | Merge branch 'for-5.11/i2c-hid' into for-linus (diff) | |
parent | HID: intel-ish-hid: Remove unnecessary assignment to variable rv (diff) | |
download | wireguard-linux-47cdd7f139dc3e896a627e8c0e98d0501555a889.tar.xz wireguard-linux-47cdd7f139dc3e896a627e8c0e98d0501555a889.zip |
Merge branch 'for-5.11/intel-ish' into for-linus
-rw-r--r-- | drivers/hid/intel-ish-hid/ishtp-hid.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/hid/intel-ish-hid/ishtp-hid.c b/drivers/hid/intel-ish-hid/ishtp-hid.c index b8aae69ad15d..393bed0abee9 100644 --- a/drivers/hid/intel-ish-hid/ishtp-hid.c +++ b/drivers/hid/intel-ish-hid/ishtp-hid.c @@ -211,10 +211,8 @@ int ishtp_hid_probe(unsigned int cur_hid_dev, struct ishtp_hid_data *hid_data; hid = hid_allocate_device(); - if (IS_ERR(hid)) { - rv = PTR_ERR(hid); - return -ENOMEM; - } + if (IS_ERR(hid)) + return PTR_ERR(hid); hid_data = kzalloc(sizeof(*hid_data), GFP_KERNEL); if (!hid_data) { |