Lines Matching defs:super
3 * Based on clk-super.c
61 struct tegra_clk_super_mux *super = to_clk_super_mux(hw);
75 if (super->flags & TEGRA20_SUPER_CLK)
116 struct tegra_clk_super_mux *super;
124 super = kzalloc(sizeof(*super), GFP_KERNEL);
125 if (!super)
133 super->reg = reg;
134 super->lock = lock;
135 super->width = 4;
136 super->flags = clk_super_flags;
137 super->hw.init = &init;
139 if (super->flags & TEGRA20_SUPER_CLK) {
144 super->frac_div.reg = reg + 4;
145 super->frac_div.shift = 16;
146 super->frac_div.width = 8;
147 super->frac_div.frac_width = 1;
148 super->frac_div.lock = lock;
149 super->div_ops = &tegra_clk_frac_div_ops;
179 clk = clk_register(NULL, &super->hw);
181 kfree(super);
183 cclk_super = super;