aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2024-04-13 15:46:09 +0200
committerStephen Boyd <sboyd@kernel.org>2024-04-19 18:58:36 -0700
commit8e931ef1bdc5d60c530d182eeccad8b7e1ad6ed1 (patch)
tree5300f2c8723ccf9ac868df70e7a3c26effc2abd3
parent5677925ed74759be0c46bb7b6a9cfc5ebf957523 (diff)
downloadlinux-clk-cleanup.tar.gz
clk: gemini: Remove an unused field in struct clk_gemini_pciclk-cleanup
In "struct clk_gemini_pci", the 'rate' field is unused. Remove it. Found with cppcheck, unusedStructMember. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/556770c7701868f9f1c0569674903bee3eff30cb.1713015940.git.christophe.jaillet@wanadoo.fr Signed-off-by: Stephen Boyd <sboyd@kernel.org>
-rw-r--r--drivers/clk/clk-gemini.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/clk/clk-gemini.c b/drivers/clk/clk-gemini.c
index ba0ff01bf4dc4..856b008e07c6b 100644
--- a/drivers/clk/clk-gemini.c
+++ b/drivers/clk/clk-gemini.c
@@ -67,12 +67,10 @@ struct gemini_gate_data {
* struct clk_gemini_pci - Gemini PCI clock
* @hw: corresponding clock hardware entry
* @map: regmap to access the registers
- * @rate: current rate
*/
struct clk_gemini_pci {
struct clk_hw hw;
struct regmap *map;
- unsigned long rate;
};
/**