]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
cpufreq: tegra194: Rename Tegra239 to Tegra238
authorThierry Reding <treding@nvidia.com>
Thu, 26 Feb 2026 15:12:12 +0000 (16:12 +0100)
committerViresh Kumar <viresh.kumar@linaro.org>
Tue, 3 Mar 2026 04:16:04 +0000 (09:46 +0530)
This chip identifies as Tegra238, so update the device tree compatible
string and data structures associated with it to use the correct name.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/tegra194-cpufreq.c

index 7a41cfc71a4647b0fd931612d54720ba03c4fc53..c6375e14d445d700108da94f7cd14ce474614786 100644 (file)
@@ -196,7 +196,7 @@ static const struct tegra_cpufreq_soc tegra234_cpufreq_soc = {
        .refclk_delta_min = 16000,
 };
 
-static const struct tegra_cpufreq_soc tegra239_cpufreq_soc = {
+static const struct tegra_cpufreq_soc tegra238_cpufreq_soc = {
        .ops = &tegra234_cpufreq_ops,
        .actmon_cntr_base = 0x4000,
        .maxcpus_per_cluster = 8,
@@ -807,7 +807,7 @@ static void tegra194_cpufreq_remove(struct platform_device *pdev)
 static const struct of_device_id tegra194_cpufreq_of_match[] = {
        { .compatible = "nvidia,tegra194-ccplex", .data = &tegra194_cpufreq_soc },
        { .compatible = "nvidia,tegra234-ccplex-cluster", .data = &tegra234_cpufreq_soc },
-       { .compatible = "nvidia,tegra239-ccplex-cluster", .data = &tegra239_cpufreq_soc },
+       { .compatible = "nvidia,tegra238-ccplex-cluster", .data = &tegra238_cpufreq_soc },
        { /* sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, tegra194_cpufreq_of_match);