Lines Matching refs:dev_fmt
157 vclkdev_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, in vclkdev_alloc() argument
172 if (dev_fmt) { in vclkdev_alloc()
173 vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap); in vclkdev_alloc()
181 vclkdev_create(struct clk_hw *hw, const char *con_id, const char *dev_fmt, in vclkdev_create() argument
186 cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); in vclkdev_create()
194 clkdev_alloc(struct clk *clk, const char *con_id, const char *dev_fmt, ...) in clkdev_alloc() argument
199 va_start(ap, dev_fmt); in clkdev_alloc()
200 cl = vclkdev_alloc(__clk_get_hw(clk), con_id, dev_fmt, ap); in clkdev_alloc()
208 clkdev_hw_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, ...) in clkdev_hw_alloc() argument
213 va_start(ap, dev_fmt); in clkdev_hw_alloc()
214 cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); in clkdev_hw_alloc()
231 const char *dev_fmt, ...) in clkdev_create() argument
236 va_start(ap, dev_fmt); in clkdev_create()
237 cl = vclkdev_create(__clk_get_hw(clk), con_id, dev_fmt, ap); in clkdev_create()
254 const char *dev_fmt, ...) in clkdev_hw_create() argument
259 va_start(ap, dev_fmt); in clkdev_hw_create()
260 cl = vclkdev_create(hw, con_id, dev_fmt, ap); in clkdev_hw_create()