From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A015F3FF1AE; Sat, 12 Sep 2026 12:44:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789217061; cv=none; b=ZsA97E98vm9GugnXYnPti5kFoZV6VoAMh8vvhrwEb1YOgOwFhIVmR68EnQGCMjVEykPx4u62CpmHYzMt/VS2BSCaO+60l2n7mKbI5k1iKqXk3NgRk6KtkW5sikBUGLjiXqJRQnIEXxz9/6HnPj4dGsL+O6+yzF4rGcIH/B6kpYQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789217061; c=relaxed/simple; bh=InmXO/Lj5rv2EwWG2Z97ERrAqVj28/bLnkYuISOYVH8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nFvllMG4j9Xs89TU1v3jFPIN802pQyeDFmJEVFA1H4Jnq0cIb58CoZWgrLIv9yySWGjyKdB696HxvcvzQhVk2JDswnqDDvF06IHeW3sH8apYiKM/M1cUczdbYyqkOK99c9CFTUbq68bvonWooWKuXfwNxie385pp5Ugw94r6B8k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=U0akcoOl; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="U0akcoOl" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B067F1F000FF; Sat, 12 Sep 2026 12:44:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789217060; bh=35a8GtXYr6thZspKJedEY5/nQ43+migW5MrGxUnmU9g=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=U0akcoOljMzFmfrmaPzbWKcq6C0O539qhT26hjlhuRAppP1HObLWJH8pQJX+TvGVg C7wV2tF5iEPplWzGtfMN6oqEqzbirQkfVO4YkhVTH9vpGJSEPbukmFhSNiAtJWVtJr fcsf0A2micwEQbrOGueciq+rhue362KuHt0tdcoA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ai Chao , "Mario Limonciello (AMD)" , Jiri Kosina , Sasha Levin Subject: [PATCH 6.12 0863/1376] HID: i2c-hid: Fix "(null)" output when reading report descriptor fails Date: Sat, 12 Sep 2026 08:54:49 +0200 Message-ID: <20260912065626.794548242@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065607.535295758@linuxfoundation.org> References: <20260912065607.535295758@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ai Chao [ Upstream commit 8da0f0951deec9f0728ed2d9c54ded1c344b7542 ] When i2c-hid fails to read the HID report descriptor during device initialization, the error message prints as: hid (null): reading report descriptor failed The HID device name is set in hid_add_device() after calling hdev->ll_driver->parse(), so when i2c_hid_parse() fails and calls hid_err(), the device name has not been set yet, resulting in "(null)" output. Use dev_err(&client->dev, ...) instead of hid_err(hid, ...) because the I2C client device is fully initialized with a proper name, providing meaningful error messages for debugging. Before: hid (null): reading report descriptor failed After: i2c_hid i2c-TPD0001:00: reading report descriptor failed Fixes: 4a200c3b9a40 ("HID: i2c-hid: introduce HID over i2c specification implementation") Signed-off-by: Ai Chao Reviewed-by: Mario Limonciello (AMD) Signed-off-by: Jiri Kosina Signed-off-by: Sasha Levin --- drivers/hid/i2c-hid/i2c-hid-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/i2c-hid/i2c-hid-core.c b/drivers/hid/i2c-hid/i2c-hid-core.c index 8ce0535fc42d6..0e1adfa9b2931 100644 --- a/drivers/hid/i2c-hid/i2c-hid-core.c +++ b/drivers/hid/i2c-hid/i2c-hid-core.c @@ -784,7 +784,7 @@ static int i2c_hid_parse(struct hid_device *hid) ihid->hdesc.wReportDescRegister, rdesc, rsize); if (ret) { - hid_err(hid, "reading report descriptor failed\n"); + dev_err(&client->dev, "reading report descriptor failed\n"); goto out; } } -- 2.53.0