Re: [PATCH 20/32] Input: yealink.rst: Fix bracket
From: Randy Dunlap <rdunlap@infradead.org>
Date: 2026-09-04 21:11:47
Also in:
linux-doc, lkml
On 9/4/26 5:10 AM, Manuel Ebner wrote:
quoted hunk ↗ jump to hunk
Remove needless '['. Signed-off-by: Manuel Ebner <redacted> --- Documentation/input/devices/yealink.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)diff --git a/Documentation/input/devices/yealink.rst b/Documentation/input/devices/yealink.rst index bb5a1aafe..de86cf7f5 100644 --- a/Documentation/input/devices/yealink.rst +++ b/Documentation/input/devices/yealink.rst@@ -205,7 +205,7 @@ Troubleshooting :Q: Module yealink compiled and installed without any problem but phone is not initialized and does not react to any actions. :A: If you see something like: - hiddev0: USB HID v1.00 Device [Yealink Network Technology Ltd. VOIP USB Phone + hiddev0: USB HID v1.00 Device Yealink Network Technology Ltd. VOIP USB Phone in dmesg, it means that the hid driver has grabbed the device first. Try to load module yealink before any other usb hid driver. Please see the instructions provided by your distribution on module configuration.
According to drivers/hid/hid-core.c (near line 2395 in today's linux-next tree), this documentation should have a ']' added to it: hid_info(hdev, "%s: %s HID v%x.%02x %s [%s] on %s\n", buf, bus, hdev->version >> 8, hdev->version & 0xff, type, hdev->name, hdev->phys); so + hiddev0: USB HID v1.00 Device [Yealink Network Technology Ltd. VOIP USB Phone] AFAICT. -- ~Randy