diff options
author | Pali Rohár <pali@kernel.org> | 2020-11-03 16:11:33 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-12-30 11:53:38 +0100 |
commit | 5f03e8a02c4e9edaa481412fd65ef98d50daff8e (patch) | |
tree | 36553c99c0065294033cd58940bbeac65e5c8e60 /drivers/cpufreq | |
parent | 7000750ae37a561598c35be5cd77cce20e7e208e (diff) | |
download | linux-stable-5f03e8a02c4e9edaa481412fd65ef98d50daff8e.tar.gz linux-stable-5f03e8a02c4e9edaa481412fd65ef98d50daff8e.tar.bz2 linux-stable-5f03e8a02c4e9edaa481412fd65ef98d50daff8e.zip |
cpufreq: mediatek: Add missing MODULE_DEVICE_TABLE
[ Upstream commit af6eca06501118af3e2ad46eee8edab20624b74e ]
This patch adds missing MODULE_DEVICE_TABLE definition which generates
correct modalias for automatic loading of this cpufreq driver when it is
compiled as an external module.
Signed-off-by: Pali Rohár <pali@kernel.org>
Fixes: 501c574f4e3a5 ("cpufreq: mediatek: Add support of cpufreq to MT2701/MT7623 SoC")
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r-- | drivers/cpufreq/mediatek-cpufreq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cpufreq/mediatek-cpufreq.c b/drivers/cpufreq/mediatek-cpufreq.c index 7d1212c9b7c8..a310372dc53e 100644 --- a/drivers/cpufreq/mediatek-cpufreq.c +++ b/drivers/cpufreq/mediatek-cpufreq.c @@ -540,6 +540,7 @@ static const struct of_device_id mtk_cpufreq_machines[] __initconst = { { } }; +MODULE_DEVICE_TABLE(of, mtk_cpufreq_machines); static int __init mtk_cpufreq_driver_init(void) { |