Lines Matching defs:client
19 struct i2c_client *client;
36 value = i2c_smbus_read_byte_data(mc9s->client, reg);
47 value = i2c_smbus_read_byte_data(mc9s->client, reg);
54 return i2c_smbus_write_byte_data(mc9s->client, reg, value);
76 static int mc9s08dz60_probe(struct i2c_client *client,
81 mc9s = devm_kzalloc(&client->dev, sizeof(*mc9s), GFP_KERNEL);
85 mc9s->chip.label = client->name;
87 mc9s->chip.parent = &client->dev;
94 mc9s->client = client;
95 i2c_set_clientdata(client, mc9s);
97 return devm_gpiochip_add_data(&client->dev, &mc9s->chip, mc9s);