projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad1ff1f
)
HID: hid-steam: Fix typo in goto label
author
Thorsten Blum
<thorsten.blum@toblux.com>
Fri, 5 Jul 2024 04:54:59 +0000
(06:54 +0200)
committer
Benjamin Tissoires
<bentiss@kernel.org>
Fri, 12 Jul 2024 16:32:50 +0000
(18:32 +0200)
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>
drivers/hid/hid-steam.c
patch
|
blob
|
history
diff --git
a/drivers/hid/hid-steam.c
b/drivers/hid/hid-steam.c
index f166188c21eca782dca8f0da424a6c48af8eafd2..a765a48c0ab5c48f70619027c3c3efb9b17a9e65 100644
(file)
--- 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_st
r
eam_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_st
r
eam_unregister:
+err_steam_unregister:
if (steam->connected)
steam_unregister(steam);
err_hw_close: