Lines Matching defs:client
31 static unsigned int zpa2326_i2c_hwid(const struct i2c_client *client)
38 (ZPA2326_SA0(client->addr) << ZPA2326_DEVICE_ID_SA0_SHIFT));
41 static int zpa2326_probe_i2c(struct i2c_client *client)
43 const struct i2c_device_id *i2c_id = i2c_client_get_device_id(client);
46 regmap = devm_regmap_init_i2c(client, &zpa2326_regmap_i2c_config);
48 dev_err(&client->dev, "failed to init registers map");
52 return zpa2326_probe(&client->dev, i2c_id->name, client->irq,
53 zpa2326_i2c_hwid(client), regmap);
56 static void zpa2326_remove_i2c(struct i2c_client *client)
58 zpa2326_remove(&client->dev);