Lines Matching defs:client
166 static int pcf50633_probe(struct i2c_client *client)
170 struct pcf50633_platform_data *pdata = dev_get_platdata(&client->dev);
174 if (!client->irq) {
175 dev_err(&client->dev, "Missing IRQ\n");
179 pcf = devm_kzalloc(&client->dev, sizeof(*pcf), GFP_KERNEL);
183 i2c_set_clientdata(client, pcf);
184 pcf->dev = &client->dev;
189 pcf->regmap = devm_regmap_init_i2c(client, &pcf50633_regmap_config);
207 pcf50633_irq_init(pcf, client->irq);
237 ret = sysfs_create_group(&client->dev.kobj, &pcf_attr_group);
255 static void pcf50633_remove(struct i2c_client *client)
257 struct pcf50633 *pcf = i2c_get_clientdata(client);
260 sysfs_remove_group(&client->dev.kobj, &pcf_attr_group);