Lines Matching refs:da9055
19 struct da9055 *da9055; in da9055_i2c_probe() local
22 da9055 = devm_kzalloc(&i2c->dev, sizeof(struct da9055), GFP_KERNEL); in da9055_i2c_probe()
23 if (!da9055) in da9055_i2c_probe()
26 da9055->regmap = devm_regmap_init_i2c(i2c, &da9055_regmap_config); in da9055_i2c_probe()
27 if (IS_ERR(da9055->regmap)) { in da9055_i2c_probe()
28 ret = PTR_ERR(da9055->regmap); in da9055_i2c_probe()
34 da9055->dev = &i2c->dev; in da9055_i2c_probe()
35 da9055->chip_irq = i2c->irq; in da9055_i2c_probe()
37 i2c_set_clientdata(i2c, da9055); in da9055_i2c_probe()
39 return da9055_device_init(da9055); in da9055_i2c_probe()
44 struct da9055 *da9055 = i2c_get_clientdata(i2c); in da9055_i2c_remove() local
46 da9055_device_exit(da9055); in da9055_i2c_remove()