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 6A4DE346E51; Tue, 16 Dec 2025 11:46: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=1765885560; cv=none; b=dXZXSB5e9ntAxAgEJ+54bs4SBiOBgfE53kFUX/3cejTTffYjvEY9+510cHCGkIuhukagK10tMIGANWvFIBEwpxmp3i6jOjubDgDTgyw03U12FaIsHmjyI9Dj4ZAg0Xzp+lhUrpdZrmRR+VIhADcDIQrOd79C1tGUU05WN+Rwjf0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1765885560; c=relaxed/simple; bh=39r28uBKbV/x6z0AhJkCwiZyjEIEqs8Y3efm5vKQmhw=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WEno4d7o3w+OKPWVzDk3Si5+VrYYlao0QlCfGOzXaSBpwhTTpsKjr9GQ3AzrBo/40EBGhvKESn/z9PRKKKxbCIRt4mhsNmFuIIWnDEPBEKmrMsMVW4ndgHjBulVquE3xnMXQrff0cy4xWmfsxcOUyZNtWlmrDEKZFlb/ady3h7c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=SfNBHXHV; 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="SfNBHXHV" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 71C8EC4CEF1; Tue, 16 Dec 2025 11:45:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1765885559; bh=39r28uBKbV/x6z0AhJkCwiZyjEIEqs8Y3efm5vKQmhw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SfNBHXHVS1Bz/wHPFWhAjaCTa/n1UKw9EfUfEQGrYFbjZI8T2TnRUy9eUSGN7M9kK GfUs5w6Zp4qjMur/siIh6eQzIfjX6Lbfi69Kj4zgeyO1z8z8aw2Y9r31b0a524pmRL 6QSA0jSY/f5poEjizjzh1PfLrAJ82CYqhFWu5PnM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Baryshkov , Konrad Dybcio , Georgi Djakov , Sasha Levin Subject: [PATCH 6.17 141/507] interconnect: qcom: msm8996: add missing link to SLAVE_USB_HS Date: Tue, 16 Dec 2025 12:09:42 +0100 Message-ID: <20251216111350.636242357@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251216111345.522190956@linuxfoundation.org> References: <20251216111345.522190956@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.17-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Baryshkov [ Upstream commit 8cf9b43f6b4d90e19a9341edefdd46842d4adb55 ] >>From the initial submission the interconnect driver missed the link from SNOC_PNOC to the USB 2 configuration space. Add missing link in order to let the platform configure and utilize this path. Fixes: 7add937f5222 ("interconnect: qcom: Add MSM8996 interconnect provider driver") Signed-off-by: Dmitry Baryshkov Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20251002-fix-msm8996-icc-v1-1-a36a05d1f869@oss.qualcomm.com Signed-off-by: Georgi Djakov Signed-off-by: Sasha Levin --- drivers/interconnect/qcom/msm8996.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/interconnect/qcom/msm8996.c b/drivers/interconnect/qcom/msm8996.c index b73566c9b21f9..84cfafb22aa17 100644 --- a/drivers/interconnect/qcom/msm8996.c +++ b/drivers/interconnect/qcom/msm8996.c @@ -552,6 +552,7 @@ static struct qcom_icc_node mas_venus_vmem = { static const u16 mas_snoc_pnoc_links[] = { MSM8996_SLAVE_BLSP_1, MSM8996_SLAVE_BLSP_2, + MSM8996_SLAVE_USB_HS, MSM8996_SLAVE_SDCC_1, MSM8996_SLAVE_SDCC_2, MSM8996_SLAVE_SDCC_4, -- 2.51.0