• Home
  • Raw
  • Download

Lines Matching refs:client

39 typedef int (*i2c_slave_cb_t)(struct i2c_client *client, enum i2c_slave_event event, u8 *val);
60 int i2c_transfer_buffer_flags(const struct i2c_client *client, char *buf, int count, u16 flags);
70 static inline int i2c_master_recv(const struct i2c_client *client, char *buf, int count) in i2c_master_recv() argument
72 return i2c_transfer_buffer_flags(client, buf, count, I2C_M_RD); in i2c_master_recv()
84 static inline int i2c_master_recv_dmasafe(const struct i2c_client *client, char *buf, int count) in i2c_master_recv_dmasafe() argument
86 return i2c_transfer_buffer_flags(client, buf, count, I2C_M_RD | I2C_M_DMA_SAFE); in i2c_master_recv_dmasafe()
97 static inline int i2c_master_send(const struct i2c_client *client, const char *buf, int count) in i2c_master_send() argument
99 return i2c_transfer_buffer_flags(client, (char *)buf, count, 0); in i2c_master_send()
111 static inline int i2c_master_send_dmasafe(const struct i2c_client *client, const char *buf, int cou… in i2c_master_send_dmasafe() argument
113 return i2c_transfer_buffer_flags(client, (char *)buf, count, I2C_M_DMA_SAFE); in i2c_master_send_dmasafe()
137 s32 i2c_smbus_read_byte(const struct i2c_client *client);
138 s32 i2c_smbus_write_byte(const struct i2c_client *client, u8 value);
139 s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command);
140 s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command, u8 value);
141 s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command);
142 s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command, u16 value);
144 static inline s32 i2c_smbus_read_word_swapped(const struct i2c_client *client, u8 command) in i2c_smbus_read_word_swapped() argument
146 s32 value = i2c_smbus_read_word_data(client, command); in i2c_smbus_read_word_swapped()
151 static inline s32 i2c_smbus_write_word_swapped(const struct i2c_client *client, u8 command, u16 val… in i2c_smbus_write_word_swapped() argument
153 return i2c_smbus_write_word_data(client, command, swab16(value)); in i2c_smbus_write_word_swapped()
157 s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command, u8 *values);
158 s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command, u8 length, const u8 *va…
160 s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command, u8 length, u8 *value…
161 s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command, u8 length, const u8…
162 s32 i2c_smbus_read_i2c_block_data_or_emulated(const struct i2c_client *client, u8 command, u8 lengt…
163 int i2c_get_device_id(const struct i2c_client *client, struct i2c_device_identity *id);
237 int (*probe)(struct i2c_client *client, const struct i2c_device_id *id);
238 int (*remove)(struct i2c_client *client);
243 int (*probe_new)(struct i2c_client *client);
246 void (*shutdown)(struct i2c_client *client);
255 void (*alert)(struct i2c_client *client, enum i2c_alert_protocol protocol, unsigned int data);
260 int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
266 int (*detect)(struct i2c_client *client, struct i2c_board_info *info);
319 …truct i2c_device_id *i2c_match_id(const struct i2c_device_id *id, const struct i2c_client *client);
327 static inline void *i2c_get_clientdata(const struct i2c_client *client) in i2c_get_clientdata() argument
329 return dev_get_drvdata(&client->dev); in i2c_get_clientdata()
332 static inline void i2c_set_clientdata(struct i2c_client *client, void *data) in i2c_set_clientdata() argument
334 dev_set_drvdata(&client->dev, data); in i2c_set_clientdata()
348 int i2c_slave_register(struct i2c_client *client, i2c_slave_cb_t slave_cb);
349 int i2c_slave_unregister(struct i2c_client *client);
352 static inline int i2c_slave_event(struct i2c_client *client, enum i2c_slave_event event, u8 *val) in i2c_slave_event() argument
354 return client->slave_cb(client, event, val); in i2c_slave_event()
439 struct i2c_client *i2c_new_ancillary_device(struct i2c_client *client, const char *name, u16 defaul…
441 void i2c_unregister_device(struct i2c_client *client);
504 int (*reg_slave)(struct i2c_client *client);
505 int (*unreg_slave)(struct i2c_client *client);
812 static inline bool i2c_client_has_driver(struct i2c_client *client) in i2c_client_has_driver() argument
814 return !IS_ERR_OR_NULL(client) && client->dev.driver; in i2c_client_has_driver()
901 …t of_device_id *i2c_of_match_device(const struct of_device_id *matches, struct i2c_client *client);
923 struct i2c_client *client) in i2c_of_match_device() argument