Lines Matching defs:cg
192 struct en_clk_gate *cg = container_of(hw, struct en_clk_gate, hw);
194 return !!(readl(cg->base + REG_PCI_CONTROL) & REG_PCI_CONTROL_REFCLK_EN1);
199 struct en_clk_gate *cg = container_of(hw, struct en_clk_gate, hw);
200 void __iomem *np_base = cg->base;
238 struct en_clk_gate *cg = container_of(hw, struct en_clk_gate, hw);
239 void __iomem *np_base = cg->base;
259 struct en_clk_gate *cg;
261 cg = devm_kzalloc(dev, sizeof(*cg), GFP_KERNEL);
262 if (!cg)
265 cg->base = np_base;
266 cg->hw.init = &init;
267 en7523_pci_unprepare(&cg->hw);
269 if (clk_hw_register(dev, &cg->hw))
272 return &cg->hw;