Lines Matching refs:dev_fmt
251 vclkdev_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, in vclkdev_alloc() argument
266 if (dev_fmt) { in vclkdev_alloc()
267 vscnprintf(cla->dev_id, sizeof(cla->dev_id), dev_fmt, ap); in vclkdev_alloc()
275 vclkdev_create(struct clk_hw *hw, const char *con_id, const char *dev_fmt, in vclkdev_create() argument
280 cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); in vclkdev_create()
288 clkdev_alloc(struct clk *clk, const char *con_id, const char *dev_fmt, ...) in clkdev_alloc() argument
293 va_start(ap, dev_fmt); in clkdev_alloc()
294 cl = vclkdev_alloc(__clk_get_hw(clk), con_id, dev_fmt, ap); in clkdev_alloc()
302 clkdev_hw_alloc(struct clk_hw *hw, const char *con_id, const char *dev_fmt, ...) in clkdev_hw_alloc() argument
307 va_start(ap, dev_fmt); in clkdev_hw_alloc()
308 cl = vclkdev_alloc(hw, con_id, dev_fmt, ap); in clkdev_hw_alloc()
325 const char *dev_fmt, ...) in clkdev_create() argument
330 va_start(ap, dev_fmt); in clkdev_create()
331 cl = vclkdev_create(__clk_get_hw(clk), con_id, dev_fmt, ap); in clkdev_create()
348 const char *dev_fmt, ...) in clkdev_hw_create() argument
353 va_start(ap, dev_fmt); in clkdev_hw_create()
354 cl = vclkdev_create(hw, con_id, dev_fmt, ap); in clkdev_hw_create()