cpufreq: Add __init annotation to module init funcs

Add missing __init annotation to module init funcs.

Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
Xiu Jianfeng 2022-09-24 17:21:59 +08:00 committed by Viresh Kumar
parent f991b11712
commit f7968c22bd
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ static struct notifier_block hb_cpufreq_clk_nb = {
.notifier_call = hb_cpufreq_clk_notify, .notifier_call = hb_cpufreq_clk_notify,
}; };
static int hb_cpufreq_driver_init(void) static int __init hb_cpufreq_driver_init(void)
{ {
struct platform_device_info devinfo = { .name = "cpufreq-dt", }; struct platform_device_info devinfo = { .name = "cpufreq-dt", };
struct device *cpu_dev; struct device *cpu_dev;

View File

@ -252,7 +252,7 @@ static int sti_cpufreq_fetch_syscon_registers(void)
return 0; return 0;
} }
static int sti_cpufreq_init(void) static int __init sti_cpufreq_init(void)
{ {
int ret; int ret;

View File

@ -398,7 +398,7 @@ fail_put_node:
return ret; return ret;
} }
static int ti_cpufreq_init(void) static int __init ti_cpufreq_init(void)
{ {
const struct of_device_id *match; const struct of_device_id *match;