From: Raphael Gallais-Pou Date: Tue, 25 Jun 2024 22:00:56 +0000 (+0200) Subject: cpufreq: sti: add missing MODULE_DEVICE_TABLE entry for stih418 X-Git-Tag: io_uring-6.11-20240722~81^2~2^2^2^2~7 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=ce84b7beeb524e7b20983838687862454ba54df7;p=linux-block.git cpufreq: sti: add missing MODULE_DEVICE_TABLE entry for stih418 '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 Signed-off-by: Viresh Kumar --- diff --git a/drivers/cpufreq/sti-cpufreq.c b/drivers/cpufreq/sti-cpufreq.c index 9c542e723a15..1ffa23dd8907 100644 --- a/drivers/cpufreq/sti-cpufreq.c +++ b/drivers/cpufreq/sti-cpufreq.c @@ -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);