mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 18:09:56 +00:00
cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE
[ Upstream commitc942d1542f] CONFIG_ARM_ARMADA_37XX_CPUFREQ is tristate option and therefore this cpufreq driver can be compiled as a module. This patch adds missing MODULE_DEVICE_TABLE which generates correct modalias for automatic loading of this cpufreq driver when is compiled as an external module. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Pali Rohár <pali@kernel.org> Fixes:92ce45fb87("cpufreq: Add DVFS support for Armada 37xx") [ Viresh: Added __maybe_unused ] Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1c37441fbd
commit
ca0b8604f3
@@ -484,6 +484,12 @@ remove_opp:
|
|||||||
/* late_initcall, to guarantee the driver is loaded after A37xx clock driver */
|
/* late_initcall, to guarantee the driver is loaded after A37xx clock driver */
|
||||||
late_initcall(armada37xx_cpufreq_driver_init);
|
late_initcall(armada37xx_cpufreq_driver_init);
|
||||||
|
|
||||||
|
static const struct of_device_id __maybe_unused armada37xx_cpufreq_of_match[] = {
|
||||||
|
{ .compatible = "marvell,armada-3700-nb-pm" },
|
||||||
|
{ },
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, armada37xx_cpufreq_of_match);
|
||||||
|
|
||||||
MODULE_AUTHOR("Gregory CLEMENT <gregory.clement@free-electrons.com>");
|
MODULE_AUTHOR("Gregory CLEMENT <gregory.clement@free-electrons.com>");
|
||||||
MODULE_DESCRIPTION("Armada 37xx cpufreq driver");
|
MODULE_DESCRIPTION("Armada 37xx cpufreq driver");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|||||||
Reference in New Issue
Block a user