From: Christophe JAILLET Date: Tue, 30 Apr 2024 21:42:39 +0000 (+0200) Subject: clocksource/drivers/timer-ti-dm: Remove an unused field in struct dmtimer X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e6f8bed209d5fa8602cda45930b0a331234d95ed;p=linux.git clocksource/drivers/timer-ti-dm: Remove an unused field in struct dmtimer In "struct dmtimer", the 'rate' field is unused. Remove it. Found with cppcheck, unusedStructMember. Signed-off-by: Christophe JAILLET Signed-off-by: Daniel Lezcano Link: https://lore.kernel.org/r/c9f7579922c587fce334a1aa9651f3189de7a00b.1714513336.git.christophe.jaillet@wanadoo.fr --- diff --git a/drivers/clocksource/timer-ti-dm.c b/drivers/clocksource/timer-ti-dm.c index 56acf26172621..b7a34b1a975ec 100644 --- a/drivers/clocksource/timer-ti-dm.c +++ b/drivers/clocksource/timer-ti-dm.c @@ -129,7 +129,6 @@ struct dmtimer { void __iomem *func_base; /* function register base */ atomic_t enabled; - unsigned long rate; unsigned reserved:1; unsigned posted:1; unsigned omap1:1;