Commit 8e931ef1 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Stephen Boyd
Browse files

clk: gemini: Remove an unused field in struct clk_gemini_pci



In "struct clk_gemini_pci", the 'rate' field is unused.

Remove it.

Found with cppcheck, unusedStructMember.

Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/556770c7701868f9f1c0569674903bee3eff30cb.1713015940.git.christophe.jaillet@wanadoo.fr


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 5677925e
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
};

/**