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 E6E433346BE; Thu, 28 May 2026 20:42:30 +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=1780000952; cv=none; b=jjR5yJ7sYZukI0rrOTjUeYvhVaeF59/dOrROfh1mIFtO3HiBnv5RxvOxHFQMAQL1XOWGKKS21RyOJzKGKLU+IZs15bd0I/Lbwr+//4FBYfr6WSGpLfMaofm4ranjoKpR7fmY/9hJO1D3/G26PeDOKXfLSVOixWDCwLGYZyUwlpo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1780000952; c=relaxed/simple; bh=XoyyjW7ajjx6UEQzRPovICWlH6N7X1/1blmR3iXBGd4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rrDn3hy3GFmDnvXMguKTIecWMl0iu0R1y3IzbqHJGz7HLvMr9lrCCCtsXckLVGbKXDyxDxAtW1jAtDiWgpKWf56PeoZPLTbPD8CZJaJwED/p4YNh1MAXbWI0p5Bngvx6ENWs5imBjM+538IdXnGbGSeB112qertXXqb0bhNsGEE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=D34IyB6B; 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="D34IyB6B" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5121B1F000E9; Thu, 28 May 2026 20:42:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1780000950; bh=a0TWf8D28nHFMWgRxZ4pywQlpsQmSXH4AIpuj2Kwss0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=D34IyB6BoA4EESWt5lTJ1UaHysAn+b2MQv9E9FnF1wGd333vW6C0wgK7lNdXTczFQ HKn9K4VYH423ReUMIbdy9BfOWP6JmjCUvD6rPMO4nZV4BdWt6K6JgvLYsRWIJC6HEC yx9E45ok6BO2muNMAw+r8eh+LlOR/7cdTc2+xbiU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andrew Lunn , Sven Schuchmann , Paolo Abeni , Sasha Levin Subject: [PATCH 6.12 227/272] net: phy: DP83TC811: add reading of abilities Date: Thu, 28 May 2026 21:50:01 +0200 Message-ID: <20260528194635.538177995@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260528194629.379955525@linuxfoundation.org> References: <20260528194629.379955525@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: Sven Schuchmann [ Upstream commit c78bdba7b9666020c0832150a4fc4c0aebc7c6ac ] At this time the driver is not listing any speeds it supports. This should be ETHTOOL_LINK_MODE_100baseT1_Full_BIT for DP83TC811. Add the missing call for phylib to read the abilities. Fixes: b753a9faaf9a ("net: phy: DP83TC811: Introduce support for the DP83TC811 phy") Suggested-by: Andrew Lunn Signed-off-by: Sven Schuchmann Reviewed-by: Andrew Lunn Link: https://patch.msgid.link/20260512071949.6218-1-schuchmann@schleissheimer.de [pabeni@redhat.com: dropped revision history] Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- drivers/net/phy/dp83tc811.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/phy/dp83tc811.c b/drivers/net/phy/dp83tc811.c index 7ea32fb77190c..5425a95352f9f 100644 --- a/drivers/net/phy/dp83tc811.c +++ b/drivers/net/phy/dp83tc811.c @@ -393,6 +393,7 @@ static struct phy_driver dp83811_driver[] = { .config_init = dp83811_config_init, .config_aneg = dp83811_config_aneg, .soft_reset = dp83811_phy_reset, + .get_features = genphy_c45_pma_read_ext_abilities, .get_wol = dp83811_get_wol, .set_wol = dp83811_set_wol, .config_intr = dp83811_config_intr, -- 2.53.0