Lines Matching refs:da9055
26 struct da9055 *da9055; in da9055_i2c_probe() local
29 da9055 = devm_kzalloc(&i2c->dev, sizeof(struct da9055), GFP_KERNEL); in da9055_i2c_probe()
30 if (!da9055) in da9055_i2c_probe()
33 da9055->regmap = devm_regmap_init_i2c(i2c, &da9055_regmap_config); in da9055_i2c_probe()
34 if (IS_ERR(da9055->regmap)) { in da9055_i2c_probe()
35 ret = PTR_ERR(da9055->regmap); in da9055_i2c_probe()
41 da9055->dev = &i2c->dev; in da9055_i2c_probe()
42 da9055->chip_irq = i2c->irq; in da9055_i2c_probe()
44 i2c_set_clientdata(i2c, da9055); in da9055_i2c_probe()
46 return da9055_device_init(da9055); in da9055_i2c_probe()
51 struct da9055 *da9055 = i2c_get_clientdata(i2c); in da9055_i2c_remove() local
53 da9055_device_exit(da9055); in da9055_i2c_remove()