]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
interconnect: sm8750: Add missing const to static qcom_icc_desc
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Thu, 9 Jan 2025 16:46:30 +0000 (17:46 +0100)
committerGeorgi Djakov <djakov@kernel.org>
Mon, 13 Jan 2025 17:59:09 +0000 (19:59 +0200)
The statically allocated 'struct qcom_icc_desc' is not modified by the
driver and like all other instances should be const.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20250109164630.175093-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Georgi Djakov <djakov@kernel.org>
drivers/interconnect/qcom/sm8750.c

index 59d8bae1097e63d6010335923854e269192892c7..69bc22222075280365eb419f1ad140d1aa4e752d 100644 (file)
@@ -1485,7 +1485,7 @@ static struct qcom_icc_node * const cnoc_main_nodes[] = {
        [SLAVE_PCIE_0] = &xs_pcie,
 };
 
-static struct qcom_icc_desc sm8750_cnoc_main = {
+static const struct qcom_icc_desc sm8750_cnoc_main = {
        .nodes = cnoc_main_nodes,
        .num_nodes = ARRAY_SIZE(cnoc_main_nodes),
        .bcms = cnoc_main_bcms,
@@ -1518,7 +1518,7 @@ static struct qcom_icc_node * const gem_noc_nodes[] = {
        [SLAVE_MEM_NOC_PCIE_SNOC] = &qns_pcie,
 };
 
-static struct qcom_icc_desc sm8750_gem_noc = {
+static const struct qcom_icc_desc sm8750_gem_noc = {
        .nodes = gem_noc_nodes,
        .num_nodes = ARRAY_SIZE(gem_noc_nodes),
        .bcms = gem_noc_bcms,