From: Rafael J. Wysocki Date: Fri, 3 Dec 2021 16:51:59 +0000 (+0100) Subject: powercap: DTPM: Drop unused local variable from init_dtpm() X-Git-Tag: microblaze-v5.18~372^2^2 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=1ac5e21d43b2325854cf3b36b1509b28468dc6fd;p=linux-2.6-microblaze.git powercap: DTPM: Drop unused local variable from init_dtpm() The dtpm_descr variable in init_dtpm() is not used after commit f751db8adaea ("powercap/drivers/dtpm: Disable DTPM at boot time"), so drop it. Fixes: f751db8adaea ("powercap/drivers/dtpm: Disable DTPM at boot time") Reported-by: Stephen Rothwell Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/powercap/dtpm.c b/drivers/powercap/dtpm.c index fb35c5828bfb..2a5c1829aab7 100644 --- a/drivers/powercap/dtpm.c +++ b/drivers/powercap/dtpm.c @@ -463,8 +463,6 @@ int dtpm_register(const char *name, struct dtpm *dtpm, struct dtpm *parent) static int __init init_dtpm(void) { - struct dtpm_descr *dtpm_descr; - pct = powercap_register_control_type(NULL, "dtpm", NULL); if (IS_ERR(pct)) { pr_err("Failed to register control type\n");