Patch "cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE" has been added to the 5.9-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE

to the 5.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     cpufreq-armada-37xx-add-missing-module_device_table.patch
and it can be found in the queue-5.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 96eebff234645719319dff63cb233f1e59c52c25
Author: Pali Rohár <pali@xxxxxxxxxx>
Date:   Mon Sep 7 15:27:16 2020 +0200

    cpufreq: armada-37xx: Add missing MODULE_DEVICE_TABLE
    
    [ Upstream commit c942d1542f1bc5001216fabce9cb8ffbe515777e ]
    
    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@xxxxxxx>
    Signed-off-by: Pali Rohár <pali@xxxxxxxxxx>
    Fixes: 92ce45fb875d7 ("cpufreq: Add DVFS support for Armada 37xx")
    [ Viresh: Added __maybe_unused ]
    Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/cpufreq/armada-37xx-cpufreq.c b/drivers/cpufreq/armada-37xx-cpufreq.c
index df1c941260d14..b4af4094309b0 100644
--- a/drivers/cpufreq/armada-37xx-cpufreq.c
+++ b/drivers/cpufreq/armada-37xx-cpufreq.c
@@ -484,6 +484,12 @@ static int __init armada37xx_cpufreq_driver_init(void)
 /* late_initcall, to guarantee the driver is loaded after A37xx clock driver */
 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@xxxxxxxxxxxxxxxxxx>");
 MODULE_DESCRIPTION("Armada 37xx cpufreq driver");
 MODULE_LICENSE("GPL");



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux