Skip to content

Commit 8a25418

Browse files
tobluxBenjamin Tissoires
authored andcommitted
HID: hid-steam: Fix typo in goto label
s/stream/steam/ Signed-off-by: Thorsten Blum <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Benjamin Tissoires <[email protected]>
1 parent ad1ff1f commit 8a25418

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/hid/hid-steam.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@ static int steam_probe(struct hid_device *hdev,
12671267
steam->client_hdev = steam_create_client_hid(hdev);
12681268
if (IS_ERR(steam->client_hdev)) {
12691269
ret = PTR_ERR(steam->client_hdev);
1270-
goto err_stream_unregister;
1270+
goto err_steam_unregister;
12711271
}
12721272
steam->client_hdev->driver_data = steam;
12731273

@@ -1279,7 +1279,7 @@ static int steam_probe(struct hid_device *hdev,
12791279

12801280
err_destroy:
12811281
hid_destroy_device(steam->client_hdev);
1282-
err_stream_unregister:
1282+
err_steam_unregister:
12831283
if (steam->connected)
12841284
steam_unregister(steam);
12851285
err_hw_close:

0 commit comments

Comments
 (0)