]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
cpufreq: sti: add missing MODULE_DEVICE_TABLE entry for stih418
authorRaphael Gallais-Pou <rgallaispou@gmail.com>
Tue, 25 Jun 2024 22:00:56 +0000 (00:00 +0200)
committerViresh Kumar <viresh.kumar@linaro.org>
Wed, 26 Jun 2024 02:32:22 +0000 (08:02 +0530)
'st,stih418' is missing in the compatible list.
Add it in order to use the driver with stih418 platform.

Signed-off-by: Raphael Gallais-Pou <rgallaispou@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/sti-cpufreq.c

index 9c542e723a157f7e86e22dbf84426214f30fab14..1ffa23dd89075375620f4aeb2fced9ae2353cc28 100644 (file)
@@ -293,6 +293,7 @@ module_init(sti_cpufreq_init);
 static const struct of_device_id __maybe_unused sti_cpufreq_of_match[] = {
        { .compatible = "st,stih407" },
        { .compatible = "st,stih410" },
+       { .compatible = "st,stih418" },
        { },
 };
 MODULE_DEVICE_TABLE(of, sti_cpufreq_of_match);