Lines Matching defs:update
202 /* client update function */
203 void (*update)(struct lm93_data *, struct i2c_client *);
918 data->update(data, client);
927 /* update routine for data that has no corresponding SMBus block command */
998 /* update routine which uses SMBus block data commands */
1002 dev_dbg(&client->dev, "starting device update (block data enabled)\n");
1030 /* update routine which uses SMBus byte/word data commands only */
1037 dev_dbg(&client->dev, "starting device update (block data disabled)\n");
2592 void (*update)(struct lm93_data *, struct i2c_client *);
2594 /* choose update routine based on bus capabilities */
2599 update = lm93_update_client_full;
2602 update = lm93_update_client_min;
2614 data->update = update;