From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 659D7264A76; Tue, 8 Apr 2025 11:15:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744110911; cv=none; b=oJKT0l2vWQbGv/RbWbyraW0/NS7YU9Yacz2I8hPtJ5cJ88UnT5ZW7CU+iVHxv9C1pT4OQYPJN0bdNEh+xRkON3ELH1j9XPwhye8qBsnl7w9Gxm6d7aE4Fk0Q9gv3y3R5l4B3oPTbktpqrtdRCnxzL5PQ7e/41FE51WKajQA8PZs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744110911; c=relaxed/simple; bh=6/kSh1wh6bZNoKtaavZogJLWx/7HrZeqj9IEutU+aEk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=n/S7ATGEYEQ+66zzjJz+hU33hDSeSf8V5g17hdAQ09VmmUB9TLR9iZBKjwNKKWrHP+Us+IONgQZoc0quv6MaiW5lJ0jo4McjFCpWEKgT7rfwvPC9KwsbVA5A6KRz4uCvz/pBhi5Dli3L4iQjNcRj7IVidM0cfX5OFwvC43xG9NU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=PLriP1uW; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="PLriP1uW" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E27F5C4CEE5; Tue, 8 Apr 2025 11:15:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744110911; bh=6/kSh1wh6bZNoKtaavZogJLWx/7HrZeqj9IEutU+aEk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PLriP1uWNpbb60TU5WZCLwx3hxsvcMB2LhVWiOtIYlO8HHbCbqRaOwBUecv7t25bF ah3uOiVieG8EsGLJkAaDLKHzd9RM+emEceo32z8GlQnXFZwjyPp60PREUw+Nc1Ji8Y /hK5ObyJMLA8QARxYuxBftU8ebqLthJkVoDaB6iU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Marek=20Beh=C3=BAn?= , Andrew Lunn , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.14 239/731] net: dsa: mv88e6xxx: enable .port_set_policy() for 6320 family Date: Tue, 8 Apr 2025 12:42:16 +0200 Message-ID: <20250408104919.841537801@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104914.247897328@linuxfoundation.org> References: <20250408104914.247897328@linuxfoundation.org> User-Agent: quilt/0.68 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Marek BehĂșn [ Upstream commit a2ef58e2c4aea4de166fc9832eb2b621e88c98d5 ] Commit f3a2cd326e44 ("net: dsa: mv88e6xxx: introduce .port_set_policy") did not add the .port_set_policy() method for the 6320 family. Fix it. Fixes: f3a2cd326e44 ("net: dsa: mv88e6xxx: introduce .port_set_policy") Signed-off-by: Marek BehĂșn Reviewed-by: Andrew Lunn Link: https://patch.msgid.link/20250317173250.28780-5-kabel@kernel.org Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/dsa/mv88e6xxx/chip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index d8f037da5e294..b110704a7ee9a 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -5145,6 +5145,7 @@ static const struct mv88e6xxx_ops mv88e6320_ops = { .port_set_rgmii_delay = mv88e6320_port_set_rgmii_delay, .port_set_speed_duplex = mv88e6185_port_set_speed_duplex, .port_tag_remap = mv88e6095_port_tag_remap, + .port_set_policy = mv88e6352_port_set_policy, .port_set_frame_mode = mv88e6351_port_set_frame_mode, .port_set_ucast_flood = mv88e6352_port_set_ucast_flood, .port_set_mcast_flood = mv88e6352_port_set_mcast_flood, @@ -5194,6 +5195,7 @@ static const struct mv88e6xxx_ops mv88e6321_ops = { .port_set_rgmii_delay = mv88e6320_port_set_rgmii_delay, .port_set_speed_duplex = mv88e6185_port_set_speed_duplex, .port_tag_remap = mv88e6095_port_tag_remap, + .port_set_policy = mv88e6352_port_set_policy, .port_set_frame_mode = mv88e6351_port_set_frame_mode, .port_set_ucast_flood = mv88e6352_port_set_ucast_flood, .port_set_mcast_flood = mv88e6352_port_set_mcast_flood, -- 2.39.5