[tip: timers/core] clocksource/drivers/timer-ti-dm: Remove an unused field in struct dmtimer

tip-bot2 for Christophe JAILLET posted 1 patch 1 year, 7 months ago
drivers/clocksource/timer-ti-dm.c | 1 -
1 file changed, 1 deletion(-)
[tip: timers/core] clocksource/drivers/timer-ti-dm: Remove an unused field in struct dmtimer
Posted by tip-bot2 for Christophe JAILLET 1 year, 7 months ago
The following commit has been merged into the timers/core branch of tip:

Commit-ID:     e6f8bed209d5fa8602cda45930b0a331234d95ed
Gitweb:        https://git.kernel.org/tip/e6f8bed209d5fa8602cda45930b0a331234d95ed
Author:        Christophe JAILLET <christophe.jaillet@wanadoo.fr>
AuthorDate:    Tue, 30 Apr 2024 23:42:39 +02:00
Committer:     Daniel Lezcano <daniel.lezcano@linaro.org>
CommitterDate: Fri, 10 May 2024 10:41:52 +02:00

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 <christophe.jaillet@wanadoo.fr>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: https://lore.kernel.org/r/c9f7579922c587fce334a1aa9651f3189de7a00b.1714513336.git.christophe.jaillet@wanadoo.fr
---
 drivers/clocksource/timer-ti-dm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/clocksource/timer-ti-dm.c b/drivers/clocksource/timer-ti-dm.c
index 56acf26..b7a34b1 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;