diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2021-03-12 14:04:09 +0100 |
---|---|---|
committer | Daniel Lezcano <daniel.lezcano@linaro.org> | 2021-10-21 16:03:31 +0200 |
commit | 7a89d7eacf8e84f2afb94db5ae9d9f9faa93f01c (patch) | |
tree | 0b5b73e532ad32c539f29838b5d39d42c888cd52 /drivers/powercap/dtpm_cpu.c | |
parent | 4570ddda43387e5a130dd85e71a1947b0c11da77 (diff) | |
download | linux-7a89d7eacf8e84f2afb94db5ae9d9f9faa93f01c.tar.gz linux-7a89d7eacf8e84f2afb94db5ae9d9f9faa93f01c.tar.bz2 linux-7a89d7eacf8e84f2afb94db5ae9d9f9faa93f01c.zip |
powercap/drivers/dtpm: Simplify the dtpm table
The dtpm table is an array of pointers, that forces the user of the
table to define initdata along with the declaration of the table
entry. It is more efficient to create an array of dtpm structure, so
the declaration of the table entry can be done by initializing the
different fields.
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Link: https://lore.kernel.org/r/20210312130411.29833-3-daniel.lezcano@linaro.org
Diffstat (limited to 'drivers/powercap/dtpm_cpu.c')
-rw-r--r-- | drivers/powercap/dtpm_cpu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/powercap/dtpm_cpu.c b/drivers/powercap/dtpm_cpu.c index f6076de39540..98841524a782 100644 --- a/drivers/powercap/dtpm_cpu.c +++ b/drivers/powercap/dtpm_cpu.c @@ -204,7 +204,7 @@ out_kfree_dtpm: return ret; } -int dtpm_register_cpu(struct dtpm *parent) +static int __init dtpm_cpu_init(void) { int ret; @@ -241,3 +241,5 @@ int dtpm_register_cpu(struct dtpm *parent) return 0; } + +DTPM_DECLARE(dtpm_cpu, dtpm_cpu_init); |