diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2023-12-03 18:24:05 +0300 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2023-12-03 20:07:26 +0300 |
commit | 35fe2ad259a3bfca15ab78c8ffb5278cb6149c89 (patch) | |
tree | 7337dd14adce938f1942cfa741ad30365f8eb62b /drivers/hwmon/nzxt-kraken2.c | |
parent | 1fefca6c57fb928d2131ff365270cbf863d89c88 (diff) | |
download | linux-35fe2ad259a3bfca15ab78c8ffb5278cb6149c89.tar.xz |
hwmon: (nzxt-kraken2) Fix error handling path in kraken2_probe()
There is no point in calling hid_hw_stop() if hid_hw_start() has failed.
There is no point in calling hid_hw_close() if hid_hw_open() has failed.
Update the error handling path accordingly.
Fixes: 82e3430dfa8c ("hwmon: add driver for NZXT Kraken X42/X52/X62/X72")
Reported-by: Aleksa Savic <savicaleksa83@gmail.com>
Closes: https://lore.kernel.org/all/121470f0-6c1f-418a-844c-7ec2e8a54b8e@gmail.com/
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Jonas Malaco <jonas@protocubo.io>
Link: https://lore.kernel.org/r/a768e69851a07a1f4e29f270f4e2559063f07343.1701617030.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/nzxt-kraken2.c')
-rw-r--r-- | drivers/hwmon/nzxt-kraken2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/nzxt-kraken2.c b/drivers/hwmon/nzxt-kraken2.c index 428c77b5fce5..7caf387eb144 100644 --- a/drivers/hwmon/nzxt-kraken2.c +++ b/drivers/hwmon/nzxt-kraken2.c @@ -161,13 +161,13 @@ static int kraken2_probe(struct hid_device *hdev, ret = hid_hw_start(hdev, HID_CONNECT_HIDRAW); if (ret) { hid_err(hdev, "hid hw start failed with %d\n", ret); - goto fail_and_stop; + return ret; } ret = hid_hw_open(hdev); if (ret) { hid_err(hdev, "hid hw open failed with %d\n", ret); - goto fail_and_close; + goto fail_and_stop; } priv->hwmon_dev = hwmon_device_register_with_info(&hdev->dev, "kraken2", |