]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
clk: clk-npcm7xx: Remove unused struct npcm7xx_clk_gate_data and npcm7xx_clk_div_fixe...
authorYuan Can <yuancan@huawei.com>
Tue, 27 Sep 2022 13:39:31 +0000 (13:39 +0000)
committerStephen Boyd <sboyd@kernel.org>
Thu, 29 Sep 2022 00:39:04 +0000 (17:39 -0700)
After commit 6a5898411159("clk: clk-npcm7xx: Remove unused static const tables
'npcm7xx_gates' and 'npcm7xx_divs_fx'"), no one use struct
npcm7xx_clk_gate_data and struct npcm7xx_clk_div_fixed_data, so remove them.

Signed-off-by: Yuan Can <yuancan@huawei.com>
Link: https://lore.kernel.org/r/20220927133931.104060-1-yuancan@huawei.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-npcm7xx.c

index e677bb5a784b96ac2bb71c90e2a365e0d316f46e..e319cfa51a8a3ff99a742144c98f3b916fcad83c 100644 (file)
@@ -129,20 +129,6 @@ npcm7xx_clk_register_pll(void __iomem *pllcon, const char *name,
 #define NPCM7XX_SECCNT          (0x68)
 #define NPCM7XX_CNTR25M         (0x6C)
 
-struct npcm7xx_clk_gate_data {
-       u32 reg;
-       u8 bit_idx;
-       const char *name;
-       const char *parent_name;
-       unsigned long flags;
-       /*
-        * If this clock is exported via DT, set onecell_idx to constant
-        * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
-        * this specific clock.  Otherwise, set to -1.
-        */
-       int onecell_idx;
-};
-
 struct npcm7xx_clk_mux_data {
        u8 shift;
        u8 mask;
@@ -160,21 +146,6 @@ struct npcm7xx_clk_mux_data {
 
 };
 
-struct npcm7xx_clk_div_fixed_data {
-       u8 mult;
-       u8 div;
-       const char *name;
-       const char *parent_name;
-       u8 clk_divider_flags;
-       /*
-        * If this clock is exported via DT, set onecell_idx to constant
-        * defined in include/dt-bindings/clock/nuvoton, NPCM7XX-clock.h for
-        * this specific clock.  Otherwise, set to -1.
-        */
-       int onecell_idx;
-};
-
-
 struct npcm7xx_clk_div_data {
        u32 reg;
        u8 shift;