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 CFA60168C5 for ; Mon, 8 May 2023 10:43:38 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 159E1C433D2; Mon, 8 May 2023 10:43:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1683542618; bh=J96scCUgcFwW/WgU8ia+/0lU8QJhNiFPQo295skVAcc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=I2aRRVsfAeHNiGeMJdw/fcQotuOV12RzoGCr65O8qIc0xxQBy4jKyTJscwLZXjArQ F263tugVfXbSKmtzskRzAlnl1qem5cJtfDFuZJ4ZQEk5JKxAacH3mKIfIBSJsyvBtN Vve0iPVeWnKZ2n2Tr7Xpjt2Br074C1pEmxMNpNg0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dmitry Baryshkov , Bjorn Andersson , Konrad Dybcio , Georgi Djakov , Sasha Levin Subject: [PATCH 6.2 451/663] interconnect: qcom: osm-l3: drop unuserd header inclusion Date: Mon, 8 May 2023 11:44:37 +0200 Message-Id: <20230508094442.725694167@linuxfoundation.org> X-Mailer: git-send-email 2.40.1 In-Reply-To: <20230508094428.384831245@linuxfoundation.org> References: <20230508094428.384831245@linuxfoundation.org> User-Agent: quilt/0.67 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 From: Dmitry Baryshkov [ Upstream commit f730038fe6a6de170268fd779b2c029aa70a928b ] The commit 4529992c9474 ("interconnect: qcom: osm-l3: Use platform-independent node ids") made osm-l3 driver use platform-independent IDs, removing the need to include platform headers. Fixes: 4529992c9474 ("interconnect: qcom: osm-l3: Use platform-independent node ids") Signed-off-by: Dmitry Baryshkov Reviewed-by: Bjorn Andersson Reviewed-by: Konrad Dybcio Link: https://lore.kernel.org/r/20230103031159.1060075-1-dmitry.baryshkov@linaro.org Signed-off-by: Georgi Djakov Signed-off-by: Sasha Levin --- drivers/interconnect/qcom/osm-l3.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/drivers/interconnect/qcom/osm-l3.c b/drivers/interconnect/qcom/osm-l3.c index 1bafb54f14329..a1f4f918b9116 100644 --- a/drivers/interconnect/qcom/osm-l3.c +++ b/drivers/interconnect/qcom/osm-l3.c @@ -14,13 +14,6 @@ #include -#include "sc7180.h" -#include "sc7280.h" -#include "sc8180x.h" -#include "sdm845.h" -#include "sm8150.h" -#include "sm8250.h" - #define LUT_MAX_ENTRIES 40U #define LUT_SRC GENMASK(31, 30) #define LUT_L_VAL GENMASK(7, 0) -- 2.39.2