Lines Matching refs:mod_no
424 static struct regmap *twl_get_regmap(u8 mod_no) in twl_get_regmap() argument
433 if (unlikely(mod_no >= twl_get_last_module())) { in twl_get_regmap()
434 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no); in twl_get_regmap()
438 sid = twl_priv->twl_map[mod_no].sid; in twl_get_regmap()
453 int twl_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes) in twl_i2c_write() argument
455 struct regmap *regmap = twl_get_regmap(mod_no); in twl_i2c_write()
461 ret = regmap_bulk_write(regmap, twl_priv->twl_map[mod_no].base + reg, in twl_i2c_write()
466 DRIVER_NAME, mod_no, reg, num_bytes); in twl_i2c_write()
481 int twl_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes) in twl_i2c_read() argument
483 struct regmap *regmap = twl_get_regmap(mod_no); in twl_i2c_read()
489 ret = regmap_bulk_read(regmap, twl_priv->twl_map[mod_no].base + reg, in twl_i2c_read()
494 DRIVER_NAME, mod_no, reg, num_bytes); in twl_i2c_read()
508 int twl_set_regcache_bypass(u8 mod_no, bool enable) in twl_set_regcache_bypass() argument
510 struct regmap *regmap = twl_get_regmap(mod_no); in twl_set_regcache_bypass()
608 add_numbered_child(unsigned mod_no, const char *name, int num, in add_numbered_child() argument
616 if (unlikely(mod_no >= twl_get_last_module())) { in add_numbered_child()
617 pr_err("%s: invalid module number %d\n", DRIVER_NAME, mod_no); in add_numbered_child()
620 sid = twl_priv->twl_map[mod_no].sid; in add_numbered_child()
664 static inline struct device *add_child(unsigned mod_no, const char *name, in add_child() argument
668 return add_numbered_child(mod_no, name, -1, pdata, pdata_len, in add_child()