summaryrefslogtreecommitdiff
path: root/drivers/hid
diff options
context:
space:
mode:
authorThorsten Blum <thorsten.blum@toblux.com>2024-07-05 07:54:59 +0300
committerBenjamin Tissoires <bentiss@kernel.org>2024-07-12 19:32:50 +0300
commit8a25418ba65a5d2494b369f6178a284c449bc399 (patch)
tree5b81a53f885d0921f21f9549d1543187de579353 /drivers/hid
parentad1ff1f250c966b945d40a6a2e548f7d701b96df (diff)
downloadlinux-8a25418ba65a5d2494b369f6178a284c449bc399.tar.xz
HID: hid-steam: Fix typo in goto label
s/stream/steam/ Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Link: https://patch.msgid.link/20240705045458.65108-2-thorsten.blum@toblux.com Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Diffstat (limited to 'drivers/hid')
-rw-r--r--drivers/hid/hid-steam.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hid/hid-steam.c b/drivers/hid/hid-steam.c
index f166188c21ec..a765a48c0ab5 100644
--- a/drivers/hid/hid-steam.c
+++ b/drivers/hid/hid-steam.c
@@ -1267,7 +1267,7 @@ static int steam_probe(struct hid_device *hdev,
steam->client_hdev = steam_create_client_hid(hdev);
if (IS_ERR(steam->client_hdev)) {
ret = PTR_ERR(steam->client_hdev);
- goto err_stream_unregister;
+ goto err_steam_unregister;
}
steam->client_hdev->driver_data = steam;
@@ -1279,7 +1279,7 @@ static int steam_probe(struct hid_device *hdev,
err_destroy:
hid_destroy_device(steam->client_hdev);
-err_stream_unregister:
+err_steam_unregister:
if (steam->connected)
steam_unregister(steam);
err_hw_close: