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 9177E25524F; Tue, 29 Apr 2025 18:20:00 +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=1745950800; cv=none; b=PCWkoNGgBA8MyzQbT1tBJAsBZzHv9AuhwAWGQY/4jWa3dfjtMABrzW4pwTeWjRzx/F5w0nBetsvkuraSTALxoGCR0OVDeMaA9irpL9NjDZPKQu6Mg+IfvTXzbUBFinsiwrtzu3zQ4VFMf1xDCsvNC24pKxp4iV4tNCOxkeO3oTI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1745950800; c=relaxed/simple; bh=w3GkThhU4NTroOK5J2iUqWmjs1o1yDBjBZ3upMF/4f8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=VJQnYRWQcmfqyPIgDX/QjrHQJVb/gGgY7RkUkQq8V9LzzoNDCYFC9vETw7O44ZJ4E/kHx9QCV01xGOiuMSiC4zcm82YiAUAae6Pf3ghe54BCNuDDPmE/q6nLwKL0viFifWaqq3ZVwig4ewGgsRYSimLN6DK+VsUwYB/s9eWyokk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ipjlinZX; 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="ipjlinZX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A05B1C4CEEE; Tue, 29 Apr 2025 18:19:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1745950800; bh=w3GkThhU4NTroOK5J2iUqWmjs1o1yDBjBZ3upMF/4f8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ipjlinZX9r6PMoypUowBFZf7XMNU6G1wSzxWYs1PRSVPpVGbqhHJh6J4XS+DNzS3S OvPyBg+xc/CSmoz7ZgLx0w0xQg3hXQecoJysZglbGMwBQRk26xp9hpdBkH7icq3+oG XEA+tTodc9QKoX5N3tT/VKPfnt5UVeSrvr6ix6ms= From: Greg Kroah-Hartman To: stable@vger.kernel.org, "stable@vger.kernel.org, Sasha Levin" Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Marek=20Beh=C3=BAn?= , Andrew Lunn , Jakub Kicinski Subject: [PATCH 6.6 197/204] net: dsa: mv88e6xxx: enable PVT for 6321 switch Date: Tue, 29 Apr 2025 18:44:45 +0200 Message-ID: <20250429161107.438780988@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250429161059.396852607@linuxfoundation.org> References: <20250429161059.396852607@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.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: "Marek Behún" commit f85c69369854a43af2c5d3b3896da0908d713133 upstream. Commit f36456522168 ("net: dsa: mv88e6xxx: move PVT description in info") did not enable PVT for 6321 switch. Fix it. Fixes: f36456522168 ("net: dsa: mv88e6xxx: move PVT description in info") Signed-off-by: Marek BehĂșn Reviewed-by: Andrew Lunn Link: https://patch.msgid.link/20250317173250.28780-4-kabel@kernel.org Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- drivers/net/dsa/mv88e6xxx/chip.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -6152,6 +6152,7 @@ static const struct mv88e6xxx_info mv88e .g1_irqs = 8, .g2_irqs = 10, .atu_move_port_mask = 0xf, + .pvt = true, .multi_chip = true, .edsa_support = MV88E6XXX_EDSA_SUPPORTED, .ptp_support = true,